diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-11-10 12:27:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-11-10 16:45:26 +0000 |
commit | bb5ef9821d744ad22d303cd14748abb1f0d17862 (patch) | |
tree | a19f7bf974cc7ce4bab44244a8735578c44fec6a /sw/source/ui/vba/vbasystem.hxx | |
parent | 452b4a5fa63aa64504bce754c038274b96ceb0fd (diff) |
make sw ByteString free
Diffstat (limited to 'sw/source/ui/vba/vbasystem.hxx')
-rw-r--r-- | sw/source/ui/vba/vbasystem.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/vba/vbasystem.hxx b/sw/source/ui/vba/vbasystem.hxx index 043f35f56440..4d06529536dd 100644 --- a/sw/source/ui/vba/vbasystem.hxx +++ b/sw/source/ui/vba/vbasystem.hxx @@ -39,12 +39,12 @@ class PrivateProfileStringListener : public PropListener { private: rtl::OUString maFileName; - ByteString maGroupName; - ByteString maKey; + rtl::OString maGroupName; + rtl::OString maKey; public: PrivateProfileStringListener(){}; virtual ~PrivateProfileStringListener(); - void Initialize( const rtl::OUString& rFileName, const ByteString& rGroupName, const ByteString& rKey ); + void Initialize( const rtl::OUString& rFileName, const rtl::OString& rGroupName, const rtl::OString& rKey ); //PropListener virtual void setValueEvent( const css::uno::Any& value ); |