summaryrefslogtreecommitdiff
path: root/svtools/source/dialogs
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-05-21 15:52:27 +0200
committerNoel Grandin <noel@peralex.com>2015-05-22 10:37:59 +0200
commit566922a98d548529feacb7c21bfc8897ff5b61af (patch)
treee55a4b26ac5b32d842efbc9d9e6dc5576b226005 /svtools/source/dialogs
parent321b34419160da6829e30fc67f3d107fcb936390 (diff)
convert WINDOW constants for GetWindow() methods to scoped enum
Change-Id: I0c7c6d095732704eb4ab48f1277a0592b1c7fa33
Diffstat (limited to 'svtools/source/dialogs')
-rw-r--r--svtools/source/dialogs/wizardmachine.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/dialogs/wizardmachine.cxx b/svtools/source/dialogs/wizardmachine.cxx
index 156159c160ac..ffb47bb6255b 100644
--- a/svtools/source/dialogs/wizardmachine.cxx
+++ b/svtools/source/dialogs/wizardmachine.cxx
@@ -323,7 +323,7 @@ namespace svt
void OWizardMachine::implResetDefault(vcl::Window* _pWindow)
{
- vcl::Window* pChildLoop = _pWindow->GetWindow(WINDOW_FIRSTCHILD);
+ vcl::Window* pChildLoop = _pWindow->GetWindow(GetWindowType::FirstChild);
while (pChildLoop)
{
// does the window participate in the tabbing order?
@@ -346,7 +346,7 @@ namespace svt
}
// the next one ...
- pChildLoop = pChildLoop->GetWindow(WINDOW_NEXT);
+ pChildLoop = pChildLoop->GetWindow(GetWindowType::Next);
}
}