summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/assclass.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/dlg/assclass.cxx')
-rw-r--r--sd/source/ui/dlg/assclass.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/assclass.cxx b/sd/source/ui/dlg/assclass.cxx
index c23004ac22f6..a80f78302621 100644
--- a/sd/source/ui/dlg/assclass.cxx
+++ b/sd/source/ui/dlg/assclass.cxx
@@ -35,7 +35,7 @@ Assistent::Assistent(int nNoOfPages)
mpPageStatus[i] = true;
}
-bool Assistent::InsertControl(int nDestPage,Control* pUsedControl)
+bool Assistent::InsertControl(int nDestPage,Window* pUsedControl)
{
DBG_ASSERT( (nDestPage > 0) && (nDestPage <= mnPages), "Page not aviable!");
@@ -89,8 +89,8 @@ bool Assistent::GotoPage(const int nPageToGo)
{
int nIndex=mnCurrentPage-1;
- std::vector<Control*>::iterator iter = maPages[nIndex].begin();
- std::vector<Control*>::iterator iterEnd = maPages[nIndex].end();
+ std::vector<Window*>::iterator iter = maPages[nIndex].begin();
+ std::vector<Window*>::iterator iterEnd = maPages[nIndex].end();
for(; iter != iterEnd; ++iter)
{