diff options
author | August Sodora <augsod@gmail.com> | 2011-12-10 03:01:35 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2011-12-10 15:23:25 -0500 |
commit | 90939a7b3d9d6511a4086deea6b7a11adf30df47 (patch) | |
tree | 4f5cf2cea817550449ebd2f4436c3caa8be2e5b7 /basctl | |
parent | 313deb9782819f68b69d25629aa79476ff98e90a (diff) |
String->OUString
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/bastypes.cxx | 4 | ||||
-rw-r--r-- | basctl/source/inc/bastypes.hxx | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/basctl/source/basicide/bastypes.cxx b/basctl/source/basicide/bastypes.cxx index a68a0d887141..c23b22f96e12 100644 --- a/basctl/source/basicide/bastypes.cxx +++ b/basctl/source/basicide/bastypes.cxx @@ -58,7 +58,7 @@ const char* pRegName = "BasicIDETabBar"; TYPEINIT0( IDEBaseWindow ) TYPEINIT1( SbxItem, SfxPoolItem ); -IDEBaseWindow::IDEBaseWindow( Window* pParent, const ScriptDocument& rDocument, String aLibName, String aName ) +IDEBaseWindow::IDEBaseWindow( Window* pParent, const ScriptDocument& rDocument, ::rtl::OUString aLibName, ::rtl::OUString aName ) :Window( pParent, WinBits( WB_3DLOOK ) ) ,m_aDocument( rDocument ) ,m_aLibName( aLibName ) @@ -70,8 +70,6 @@ IDEBaseWindow::IDEBaseWindow( Window* pParent, const ScriptDocument& rDocument, nStatus = 0; } - - IDEBaseWindow::~IDEBaseWindow() { DBG_DTOR( IDEBaseWindow, 0 ); diff --git a/basctl/source/inc/bastypes.hxx b/basctl/source/inc/bastypes.hxx index e61f3117d84f..ac298cf19e59 100644 --- a/basctl/source/inc/bastypes.hxx +++ b/basctl/source/inc/bastypes.hxx @@ -140,7 +140,7 @@ protected: public: TYPEINFO(); - IDEBaseWindow( Window* pParent, const ScriptDocument& rDocument, String aLibName, String aName ); + IDEBaseWindow( Window* pParent, const ScriptDocument& rDocument, ::rtl::OUString aLibName, ::rtl::OUString aName ); virtual ~IDEBaseWindow(); void Init(); |