summaryrefslogtreecommitdiff
path: root/sd/source/ui/toolpanel/TestPanel.cxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2010-07-10 18:21:24 +0200
committerMathias Bauer <mba@openoffice.org>2010-07-10 18:21:24 +0200
commite2280d56bfd8f963b4caea5b200a83be8664d5a3 (patch)
treeae636225330f808d1b793f17d2fcc07aa1a90e68 /sd/source/ui/toolpanel/TestPanel.cxx
parent603694c8c2f44ca225bf373fa1c2d977047c4f70 (diff)
CWS changehid: #i111874#: change code to support HelpIds as byte strings
Diffstat (limited to 'sd/source/ui/toolpanel/TestPanel.cxx')
-rw-r--r--sd/source/ui/toolpanel/TestPanel.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/toolpanel/TestPanel.cxx b/sd/source/ui/toolpanel/TestPanel.cxx
index e2786e23a0c5..dd11e025f285 100644
--- a/sd/source/ui/toolpanel/TestPanel.cxx
+++ b/sd/source/ui/toolpanel/TestPanel.cxx
@@ -128,7 +128,7 @@ TestPanel::TestPanel (TreeNode* pParent)
::std::auto_ptr<TreeNode>(new Wrapper (
pScrollPanel, Size (200,300), pBox, true)),
String::CreateFromAscii ("First ListBox"),
- 0);
+ "");
pBox = new ListBox (pScrollPanel->GetWindow());
for (i=1; i<=20; i++)
@@ -142,7 +142,7 @@ TestPanel::TestPanel (TreeNode* pParent)
::std::auto_ptr<TreeNode>(new Wrapper (
pScrollPanel, Size (200,300), pBox, true)),
String::CreateFromAscii ("Second ListBox"),
- 0);
+ "");
AddControl (::std::auto_ptr<TreeNode>(pScrollPanel));
@@ -152,7 +152,7 @@ TestPanel::TestPanel (TreeNode* pParent)
::std::auto_ptr<TreeNode>(new Wrapper (
this, Size (100,30), pButton, false)),
String::CreateFromAscii ("Button Area"),
- 0);
+ "");
}