diff options
author | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-01-14 13:11:28 +0000 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-03-06 12:27:06 +0000 |
commit | 57656eb1fae5ae6c4d3b7542a385a93ff434e4e7 (patch) | |
tree | 7dc672090c6236ef7bd5a2bf5278cd03b89e2ef8 /dbaccess | |
parent | 49524c6dcf04b9dadef8d2b084cf26abcf70b8a9 (diff) |
Idle and Timer are now completely independent
And everything is functionating pretty well.
Change-Id: Id7f5a995362f6f7c5235f2e9facb7c7f119f3140
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/inc/JoinTableView.hxx | 1 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/JoinTableView.cxx | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/dbaccess/source/ui/inc/JoinTableView.hxx b/dbaccess/source/ui/inc/JoinTableView.hxx index 3e77f4df0f1f..39c6fb3ffed4 100644 --- a/dbaccess/source/ui/inc/JoinTableView.hxx +++ b/dbaccess/source/ui/inc/JoinTableView.hxx @@ -21,6 +21,7 @@ #include <vcl/window.hxx> #include <vcl/timer.hxx> +#include <vcl/idle.hxx> #include <vcl/scrbar.hxx> #include <tools/rtti.hxx> #include <svtools/transfer.hxx> diff --git a/dbaccess/source/ui/querydesign/JoinTableView.cxx b/dbaccess/source/ui/querydesign/JoinTableView.cxx index 6f3c5950ed2d..28a00c1c1090 100644 --- a/dbaccess/source/ui/querydesign/JoinTableView.cxx +++ b/dbaccess/source/ui/querydesign/JoinTableView.cxx @@ -1048,7 +1048,7 @@ bool OJoinTableView::ScrollWhileDragging() // resetting timer, if still necessary if (bNeedScrollTimer) { - m_aDragScrollIdle.SetPriority(VCL_IDLE_PRIORITY_LOW); + m_aDragScrollIdle.SetPriority(IdlePriority::VCL_IDLE_PRIORITY_LOW); m_aDragScrollIdle.Start(); } |