summaryrefslogtreecommitdiff
path: root/sdext/source/minimizer/fileopendialog.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /sdext/source/minimizer/fileopendialog.hxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'sdext/source/minimizer/fileopendialog.hxx')
-rw-r--r--sdext/source/minimizer/fileopendialog.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sdext/source/minimizer/fileopendialog.hxx b/sdext/source/minimizer/fileopendialog.hxx
index 5611d29857eb..d8a735c66fab 100644
--- a/sdext/source/minimizer/fileopendialog.hxx
+++ b/sdext/source/minimizer/fileopendialog.hxx
@@ -32,12 +32,12 @@ class FileOpenDialog
// a list of filters that are provided within the SaveDialog
struct FilterEntry
{
- rtl::OUString maName;
- rtl::OUString maType;
- rtl::OUString maUIName;
- rtl::OUString maFilter;
+ OUString maName;
+ OUString maType;
+ OUString maUIName;
+ OUString maFilter;
sal_Int32 maFlags;
- com::sun::star::uno::Sequence< rtl::OUString > maExtensions;
+ com::sun::star::uno::Sequence< OUString > maExtensions;
FilterEntry() :
maFlags( 0 ) {}
@@ -52,11 +52,11 @@ public :
sal_Int16 execute();
- void setDefaultName( const rtl::OUString& );
-// void setDefaultDirectory( const rtl::OUString& );
+ void setDefaultName( const OUString& );
+// void setDefaultDirectory( const OUString& );
- ::rtl::OUString getURL() const;
- ::rtl::OUString getFilterName() const;
+ OUString getURL() const;
+ OUString getFilterName() const;
};
#endif // _FILEOPEN_DIALOG_HXX_