[Libreoffice-commits] core.git: svtools/source
Julien Nabet
serval2412 at yahoo.fr
Sun Jan 12 13:09:13 PST 2014
svtools/source/config/test/test.cxx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
New commits:
commit df1005452c32482e4fa4c312b9dcb9418519f63f
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sun Jan 12 22:08:00 2014 +0100
cppcheck: Add missing right parenthesis
Change-Id: I960ac0348bda310652edf36c0acc08f26c328946
diff --git a/svtools/source/config/test/test.cxx b/svtools/source/config/test/test.cxx
index f66c42d..86ed9a8 100644
--- a/svtools/source/config/test/test.cxx
+++ b/svtools/source/config/test/test.cxx
@@ -137,18 +137,18 @@ void TestApplication::impl_testDynamicMenuOptions()
if( lNewMenu.getLength() < 1 )
{
- aCFG.AppendItem( E_NEWMENU, "private:factory/swriter", "new writer", "icon_writer", "_blank";
- aCFG.AppendItem( E_NEWMENU, "private:factory/scalc", "new calc", "icon_calc", "_blank";
- aCFG.AppendItem( E_NEWMENU, "private:factory/sdraw", "new draw", "icon_draw", "_blank";
+ aCFG.AppendItem( E_NEWMENU, "private:factory/swriter", "new writer", "icon_writer", "_blank");
+ aCFG.AppendItem( E_NEWMENU, "private:factory/scalc", "new calc", "icon_calc", "_blank");
+ aCFG.AppendItem( E_NEWMENU, "private:factory/sdraw", "new draw", "icon_draw", "_blank");
lNewMenu = aCFG.GetMenu( E_NEWMENU );
}
if( lWizardMenu.getLength() < 1 )
{
- aCFG.AppendItem( E_WIZARDMENU, "file://a", "system file", "icon_file", "_self";
- aCFG.AppendItem( E_WIZARDMENU, "ftp://b", "ftp host", "icon_ftp", "_self";
- aCFG.AppendItem( E_WIZARDMENU, "http://c", "www", "icon_www", "_self";
+ aCFG.AppendItem( E_WIZARDMENU, "file://a", "system file", "icon_file", "_self");
+ aCFG.AppendItem( E_WIZARDMENU, "ftp://b", "ftp host", "icon_ftp", "_self");
+ aCFG.AppendItem( E_WIZARDMENU, "http://c", "www", "icon_www", "_self");
lWizardMenu = aCFG.GetMenu( E_WIZARDMENU );
}
More information about the Libreoffice-commits
mailing list