diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-25 13:35:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-01 10:08:40 +0200 |
commit | 9a5997374f9b87f187e30b6a302c19c09eae8557 (patch) | |
tree | f850ae73d36b35ace4fd36885c4e4d0e5926131a /basctl/source/basicide/moduldlg.cxx | |
parent | cb918dda4d5ac679c78c67429a0244823accc78f (diff) |
convert basctl module from String to OUString
Change-Id: Iac38d4fd5d1d8b5c305bbb20eb1b40a7c7dec9bf
Diffstat (limited to 'basctl/source/basicide/moduldlg.cxx')
-rw-r--r-- | basctl/source/basicide/moduldlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/moduldlg.cxx b/basctl/source/basicide/moduldlg.cxx index 1aabbefd4fe1..9cde52a1a544 100644 --- a/basctl/source/basicide/moduldlg.cxx +++ b/basctl/source/basicide/moduldlg.cxx @@ -961,7 +961,7 @@ SbModule* createModImpl( Window* pWin, const ScriptDocument& rDocument, if (aNewDlg.Execute() != 0) { - if (aNewDlg.GetObjectName().Len() ) + if (!aNewDlg.GetObjectName().isEmpty() ) aModName = aNewDlg.GetObjectName(); try |