summaryrefslogtreecommitdiff
path: root/svtools/source/control/tabbar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/tabbar.cxx')
-rw-r--r--svtools/source/control/tabbar.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx
index 7360ccf3b8cd..9c4fc546657c 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -2653,14 +2653,14 @@ bool TabBar::SwitchPage( const Point& rPos )
if ( nSwitchId != mnSwitchId )
{
mnSwitchId = nSwitchId;
- mnSwitchTime = Time::GetSystemTicks();
+ mnSwitchTime = tools::Time::GetSystemTicks();
}
else
{
// change only after 500 ms
if ( mnSwitchId != GetCurPageId() )
{
- if ( Time::GetSystemTicks() > mnSwitchTime+500 )
+ if ( tools::Time::GetSystemTicks() > mnSwitchTime+500 )
{
mbInSwitching = true;
if ( ImplDeactivatePage() )