[Libreoffice-commits] .: 3 commits - slideshow/test ucb/workben xmlsecurity/workben
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Sun Jan 20 03:11:56 PST 2013
slideshow/test/demoshow.cxx | 2
ucb/workben/ucb/ucbdemo.cxx | 80 +++++++++++++++++-----------------
xmlsecurity/workben/signaturetest.cxx | 2
3 files changed, 42 insertions(+), 42 deletions(-)
New commits:
commit 15e0f6d5931d78a6a994e6e81d891ca3e0a7cf0e
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sat Jan 19 18:20:25 2013 +0100
Fix missing parenthesis
Change-Id: I65d54513bf6ff9ec62edcb3388302a8352f48898
diff --git a/slideshow/test/demoshow.cxx b/slideshow/test/demoshow.cxx
index 8c9907c..8a2b073 100644
--- a/slideshow/test/demoshow.cxx
+++ b/slideshow/test/demoshow.cxx
@@ -431,7 +431,7 @@ void DemoWindow::init()
if( !mxShow.is() )
{
uno::Reference< uno::XComponentContext > xContext =(
- ::comphelper::getProcessComponentContext();
+ ::comphelper::getProcessComponentContext());
mxShow.set( presentation::SlideShow::create(xContext),
uno::UNO_QUERY_THROW );
commit 3f3770235e7ee8a8eb53b3fa6bb10bc1456cf42f
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sat Jan 19 18:20:01 2013 +0100
Fix missing parenthesis
Change-Id: Id372cde73af484d2d03149d7bbb9f23132cdabf8
diff --git a/xmlsecurity/workben/signaturetest.cxx b/xmlsecurity/workben/signaturetest.cxx
index 59f7f3b..be7c395 100644
--- a/xmlsecurity/workben/signaturetest.cxx
+++ b/xmlsecurity/workben/signaturetest.cxx
@@ -288,7 +288,7 @@ IMPL_LINK_NOARG(MyWin, DigitalSignaturesWithServiceHdl)
aDocFileName, embed::ElementModes::READWRITE, comphelper::getProcessServiceFactory() );
uno::Reference< security::XDocumentDigitalSignatures > xD(
- security::DocumentDigitalSignatures::createDefault(comphelper::getProcessComponentContext() );
+ security::DocumentDigitalSignatures::createDefault(comphelper::getProcessComponentContext()) );
xD->signDocumentContent( xStore, NULL );
commit 3e654a9a092682f79d52816d18ad41d2fd6231c3
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sat Jan 19 18:04:35 2013 +0100
Fix missing parenthesis
Change-Id: I9b8b42465fc9246b9a85b5779a3073992ac82379
diff --git a/ucb/workben/ucb/ucbdemo.cxx b/ucb/workben/ucb/ucbdemo.cxx
index 09b9368..fdba04b 100644
--- a/ucb/workben/ucb/ucbdemo.cxx
+++ b/ucb/workben/ucb/ucbdemo.cxx
@@ -1726,30 +1726,30 @@ MyWin::MyWin( Window *pParent, WinBits nWinStyle,
m_pTool = new ToolBox( this, WB_3DLOOK | WB_BORDER | WB_SCROLL );
m_pTool->InsertItem ( MYWIN_ITEMID_CLEAR,
- OUString( "Clear" );
+ OUString("Clear"));
m_pTool->SetHelpText( MYWIN_ITEMID_CLEAR,
- OUString( "Clear the Output Window" );
+ OUString("Clear the Output Window"));
m_pTool->InsertSeparator();
m_pTool->InsertItem ( MYWIN_ITEMID_CREATE,
- OUString( "Create" );
+ OUString("Create") );
m_pTool->SetHelpText( MYWIN_ITEMID_CREATE,
- OUString( "Create a content" );
+ OUString("Create a content") );
m_pTool->InsertItem ( MYWIN_ITEMID_RELEASE,
- OUString( "Release" ) );
+ OUString("Release") );
m_pTool->SetHelpText( MYWIN_ITEMID_RELEASE,
- OUString( "Release current content" );
+ OUString("Release current content") );
m_pTool->InsertSeparator();
m_pTool->InsertItem ( MYWIN_ITEMID_COMMANDS,
- OUString( "Commands" );
+ OUString("Commands") );
m_pTool->SetHelpText( MYWIN_ITEMID_COMMANDS,
- OUString( "Get Commands supported by the content" ) );
+ OUString("Get Commands supported by the content") );
m_pTool->InsertItem ( MYWIN_ITEMID_PROPS,
- OUString( "Properties" ) ) );
+ OUString("Properties") );
m_pTool->SetHelpText( MYWIN_ITEMID_PROPS,
- OUString( "Get Properties supported by the content" ) );
+ OUString("Get Properties supported by the content") );
m_pTool->InsertSeparator();
m_pTool->InsertItem ( MYWIN_ITEMID_ADD_PROP,
- OUString( "addProperty" );
+ OUString("addProperty") );
m_pTool->SetHelpText( MYWIN_ITEMID_ADD_PROP,
OUString(
"Add a new string(!) property to the content. "
@@ -1757,21 +1757,21 @@ MyWin::MyWin( Window *pParent, WinBits nWinStyle,
"push this button. The default value for the "
"property will be set to the string 'DefaultValue'" ) );
m_pTool->InsertItem ( MYWIN_ITEMID_REMOVE_PROP,
- OUString( "removeProperty" ) );
+ OUString("removeProperty") );
m_pTool->SetHelpText( MYWIN_ITEMID_REMOVE_PROP,
OUString(
"Removes a property from the content. "
"Type the property name in the entry field and "
"push this button." ) );
m_pTool->InsertItem ( MYWIN_ITEMID_GET_PROP,
- OUString( "getPropertyValue" ) );
+ OUString("getPropertyValue") );
m_pTool->SetHelpText( MYWIN_ITEMID_GET_PROP,
OUString(
"Get a string(!) property value from the content. "
"Type the property name in the entry field and "
"push this button to obtain the value" ) );
m_pTool->InsertItem ( MYWIN_ITEMID_SET_PROP,
- OUString( "setPropertyValue" ) );
+ OUString("setPropertyValue") );
m_pTool->SetHelpText( MYWIN_ITEMID_SET_PROP,
OUString(
"Set a string(!) property value of the content."
@@ -1780,78 +1780,78 @@ MyWin::MyWin( Window *pParent, WinBits nWinStyle,
"'NewValue'" ) );
m_pTool->InsertSeparator();
m_pTool->InsertItem ( MYWIN_ITEMID_OPEN,
- OUString( "Open" ) );
+ OUString("Open") );
m_pTool->SetHelpText( MYWIN_ITEMID_OPEN,
- OUString( "Open the content" ) );
+ OUString("Open the content") );
m_pTool->InsertItem ( MYWIN_ITEMID_OPEN_ALL,
- OUString( "Open All" ) );
+ OUString("Open All") );
m_pTool->SetHelpText( MYWIN_ITEMID_OPEN_ALL,
OUString(
"Open the content and all of its"
" children" ) );
m_pTool->InsertItem ( MYWIN_ITEMID_UPDATE,
- OUString( "Update" ) );
+ OUString("Update") );
m_pTool->SetHelpText( MYWIN_ITEMID_UPDATE,
- OUString( "Update the content" ) );
+ OUString("Update the content") );
m_pTool->InsertItem ( MYWIN_ITEMID_SYNCHRONIZE,
- OUString( "Synchronize" ) );
+ OUString("Synchronize") );
m_pTool->SetHelpText( MYWIN_ITEMID_SYNCHRONIZE,
- OUString( "Synchronize the content" ) );
+ OUString("Synchronize the content") );
m_pTool->InsertItem ( MYWIN_ITEMID_SEARCH,
- OUString( "Search" ) );
+ OUString("Search") );
m_pTool->SetHelpText( MYWIN_ITEMID_SEARCH,
- OUString( "Search the content" ) );
+ OUString("Search the content") );
m_pTool->InsertItem ( MYWIN_ITEMID_REORGANIZE,
- OUString( "Reorganize" ) );
+ OUString("Reorganize") );
m_pTool->SetHelpText( MYWIN_ITEMID_REORGANIZE,
- OUString( "Reorganize the content storage" ) );
+ OUString("Reorganize the content storage") );
m_pTool->InsertSeparator();
m_pTool->InsertItem ( MYWIN_ITEMID_COPY,
- OUString( "Copy" ) );
+ OUString("Copy") );
m_pTool->SetHelpText( MYWIN_ITEMID_COPY,
OUString(
"Copy a content. Type the URL of the source "
"content into the entry field." ) );
m_pTool->InsertItem ( MYWIN_ITEMID_MOVE,
- OUString( "Move" ) );
+ OUString("Move") );
m_pTool->SetHelpText( MYWIN_ITEMID_MOVE,
OUString(
"Move a content. Type the URL of the source "
"content into the entry field." ) );
m_pTool->InsertItem ( MYWIN_ITEMID_DELETE,
- OUString( "Delete" ) );
+ OUString("Delete") );
m_pTool->SetHelpText( MYWIN_ITEMID_DELETE,
- OUString( "Delete the content." ) );
+ OUString("Delete the content.") );
m_pTool->InsertSeparator();
m_pTool->InsertItem ( MYWIN_ITEMID_TIMING,
- OUString( "Timing" ) ),
+ OUString("Timing"),
TIB_CHECKABLE | TIB_AUTOCHECK );
m_pTool->SetHelpText( MYWIN_ITEMID_TIMING,
OUString(
"Display execution times instead of"
" output" ) );
m_pTool->InsertItem ( MYWIN_ITEMID_SORT,
- OUString( "Sort" ) ),
+ OUString("Sort"),
TIB_CHECKABLE | TIB_AUTOCHECK );
m_pTool->SetHelpText( MYWIN_ITEMID_SORT,
- OUString( "Sort result sets" ) );
+ OUString("Sort result sets") );
m_pTool->InsertItem ( MYWIN_ITEMID_FETCHSIZE,
- OUString( "Fetch Size" ) );
+ OUString("Fetch Size") );
m_pTool->SetHelpText( MYWIN_ITEMID_FETCHSIZE,
- OUString( "Set cached cursor fetch size to positive value" ) );
+ OUString("Set cached cursor fetch size to positive value") );
m_pTool->InsertSeparator();
m_pTool->InsertItem ( MYWIN_ITEMID_SYS2URI,
- OUString( "UNC>URI" ) );
+ OUString("UNC>URI") );
m_pTool->SetHelpText( MYWIN_ITEMID_SYS2URI,
OUString(
"Translate 'System File Path' to URI,"
" if possible" ) );
m_pTool->InsertItem ( MYWIN_ITEMID_URI2SYS,
- OUString( "URI>UNC" ) );
+ OUString("URI>UNC") );
m_pTool->SetHelpText( MYWIN_ITEMID_URI2SYS,
OUString(
"Translate URI to 'System File Path',"
@@ -1859,13 +1859,13 @@ MyWin::MyWin( Window *pParent, WinBits nWinStyle,
m_pTool->InsertSeparator();
m_pTool->InsertItem ( MYWIN_ITEMID_OFFLINE,
- OUString( "Offline" ) );
+ OUString("Offline") );
m_pTool->SetHelpText( MYWIN_ITEMID_OFFLINE,
- OUString( "Go offline" ) );
+ OUString("Go offline") );
m_pTool->InsertItem ( MYWIN_ITEMID_ONLINE,
- OUString( "Online" ) );
+ OUString("Online") );
m_pTool->SetHelpText( MYWIN_ITEMID_ONLINE,
- OUString( "Go back online" ) );
+ OUString("Go back online") );
m_pTool->SetSelectHdl( LINK( this, MyWin, ToolBarHandler ) );
m_pTool->Show();
More information about the Libreoffice-commits
mailing list