summaryrefslogtreecommitdiff
path: root/vcl/inc/salsys.hxx
diff options
context:
space:
mode:
authorChris <chris.sherlock79@gmail.com>2013-03-13 22:13:03 +1100
committerBosdonnat Cedric <cedric.bosdonnat@free.fr>2013-03-14 12:39:46 +0000
commitd7093ec5942c0c40ac34e3b48bd12ca003ecc876 (patch)
tree45a121b06c83dab03a380b4dc5b8359fa59dcbe3 /vcl/inc/salsys.hxx
parent22f63477a3300d474c3d6832232b888f75c7290c (diff)
Remove rtl:: namespace, fix minor spelling error in comment
Change-Id: Icd04bfa61209277c57afe313d679b253aa241b7d Reviewed-on: https://gerrit.libreoffice.org/2726 Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr> Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
Diffstat (limited to 'vcl/inc/salsys.hxx')
-rw-r--r--vcl/inc/salsys.hxx13
1 files changed, 5 insertions, 8 deletions
diff --git a/vcl/inc/salsys.hxx b/vcl/inc/salsys.hxx
index 5a5580d47690..308c65e927f4 100644
--- a/vcl/inc/salsys.hxx
+++ b/vcl/inc/salsys.hxx
@@ -22,11 +22,7 @@
#include <tools/gen.hxx>
#include <vcl/dllapi.h>
-
-namespace rtl
-{
- class OUString;
-}
+#include <rtl/ustring.hxx>
/* Button combinations for ShowNativeMessageBox
*/
@@ -103,7 +99,7 @@ public:
@returns the name of the screen
*/
- virtual rtl::OUString GetDisplayScreenName( unsigned int nScreen ) = 0;
+ virtual OUString GetDisplayScreenName( unsigned int nScreen ) = 0;
/* Shows a native message box with the specified title, message and button
combination.
@@ -132,11 +128,12 @@ public:
See button identifier above. If the function fails the
return value is 0.
*/
- virtual int ShowNativeMessageBox( const rtl::OUString& rTitle,
- const rtl::OUString& rMessage,
+ virtual int ShowNativeMessageBox( const OUString& rTitle,
+ const OUString& rMessage,
int nButtonCombination,
int nDefaultButton,
bool bUseResources ) = 0;
+
};
SalSystem* ImplGetSalSystem();