summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/assclass.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/inc/assclass.hxx')
-rw-r--r--sd/source/ui/inc/assclass.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/inc/assclass.hxx b/sd/source/ui/inc/assclass.hxx
index 805e07409657..3e95415d7a9d 100644
--- a/sd/source/ui/inc/assclass.hxx
+++ b/sd/source/ui/inc/assclass.hxx
@@ -27,13 +27,13 @@
#define MAX_PAGES 10
-class Window;
+namespace vcl { class Window; }
class SD_DLLPUBLIC Assistent
{
/** contains for every page the controls, which have to be
connected? correctly */
- std::vector<Window*> maPages[MAX_PAGES];
+ std::vector<vcl::Window*> maPages[MAX_PAGES];
/// number of pages
int mnPages;
@@ -51,7 +51,7 @@ public:
void DisablePage( int nPage );
/// adds a control to the specified page
- bool InsertControl(int nDestPage,Window* pUsedControl);
+ bool InsertControl(int nDestPage, vcl::Window* pUsedControl);
bool NextPage();