summaryrefslogtreecommitdiff
path: root/automation
diff options
context:
space:
mode:
authorCaolán McNamara <cmc@openoffice.org>2009-10-09 11:44:20 +0000
committerCaolán McNamara <cmc@openoffice.org>2009-10-09 11:44:20 +0000
commit778f3b8bf582b1b6880ac711570026c55c5a5f6d (patch)
treefb9aa3b217cd8a7ebcb656f880ad5a933b14e494 /automation
parent4e1053c98877fded9edb2752d6574f215f5042da (diff)
#i104030# wrong encoding for string
Diffstat (limited to 'automation')
-rw-r--r--automation/source/server/statemnt.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/automation/source/server/statemnt.cxx b/automation/source/server/statemnt.cxx
index 4219d1d5b099..65be45907b90 100644
--- a/automation/source/server/statemnt.cxx
+++ b/automation/source/server/statemnt.cxx
@@ -4288,7 +4288,7 @@ BOOL StatementControl::HandleCommonMethods( Window *pControl )
Edit *pMyEd = new Edit(pDlg,WB_CENTER | WB_BORDER );
pMyEd->SetSizePixel(Size(100,30));
- pDlg->SetText(CUniString("Schließen"));
+ pDlg->SetText(UniString("Schließen", RTL_TEXTENCODING_ISO_8859_1));
pDlg->Show();
pMyEd->Show();
ULONG nTime = Time().GetTime();