summaryrefslogtreecommitdiff
path: root/cui/source/inc/cuigaldlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/inc/cuigaldlg.hxx')
-rw-r--r--cui/source/inc/cuigaldlg.hxx14
1 files changed, 9 insertions, 5 deletions
diff --git a/cui/source/inc/cuigaldlg.hxx b/cui/source/inc/cuigaldlg.hxx
index b3d426df7173..79a9b58f9350 100644
--- a/cui/source/inc/cuigaldlg.hxx
+++ b/cui/source/inc/cuigaldlg.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -28,7 +29,7 @@
#ifndef _CUI_GALDLG_HXX_
#define _CUI_GALDLG_HXX_
-#include <vos/thread.hxx>
+#include <osl/thread.hxx>
#include <vcl/dialog.hxx>
#include <vcl/graph.hxx>
#include <vcl/fixed.hxx>
@@ -46,8 +47,7 @@
#include <com/sun/star/media/XPlayer.hpp>
#include <com/sun/star/ui/dialogs/XFolderPicker.hpp>
#include <svtools/dialogclosedlistener.hxx>
-
-DECLARE_LIST( StringList, String* )
+#include <vector>
// ------------
// - Forwards -
@@ -59,6 +59,8 @@ class SearchProgress;
class TakeProgress;
class TPGalleryThemeProperties;
+typedef ::std::vector< UniString* > StringList;
+
// ---------------
// - FilterEntry -
// ---------------
@@ -72,7 +74,7 @@ struct FilterEntry
// - SearchThread -
// ----------------
-class SearchThread : public ::vos::OThread
+class SearchThread : public ::osl::Thread
{
private:
@@ -129,7 +131,7 @@ public:
// - TakeThread -
// --------------
-class TakeThread : public ::vos::OThread
+class TakeThread : public ::osl::Thread
{
private:
@@ -371,3 +373,5 @@ public:
};
#endif // _CUI_GALDLG_HXX_
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */