diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-01-26 15:15:36 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-01-26 16:18:45 +0200 |
commit | 4cd058f3f6568724c65ac88769f17fcc6078da23 (patch) | |
tree | d3477e423c650a24ce754d6a6713a66fc9926c74 /toolkit | |
parent | f94a77682bed8815ac2e400cadb9244b784cffda (diff) |
OpenGLWrapper is the right place for getBufferSwapCounter()
Change-Id: I3f7db276ab00d5fa493f993736f1010e76fcbcc8
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxtoolkit.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx index 0053928d09a4..a3fed7c7c42f 100644 --- a/toolkit/source/awt/vclxtoolkit.cxx +++ b/toolkit/source/awt/vclxtoolkit.cxx @@ -98,7 +98,6 @@ #include <vcl/menubtn.hxx> #include <vcl/morebtn.hxx> #include <vcl/msgbox.hxx> -#include <vcl/openglwin.hxx> #include <vcl/scrbar.hxx> #include <vcl/spin.hxx> #include <vcl/split.hxx> @@ -114,6 +113,7 @@ #include <vcl/window.hxx> #include <vcl/wrkwin.hxx> #include <vcl/throbber.hxx> +#include <vcl/opengl/OpenGLWrapper.hxx> #include "toolkit/awt/vclxspinbutton.hxx" #include <tools/debug.hxx> #include <comphelper/processfactory.hxx> @@ -1922,7 +1922,7 @@ void SAL_CALL VCLXToolkit::processEventsToIdle() sal_Int64 SAL_CALL VCLXToolkit::getOpenGLBufferSwapCounter() throw (css::uno::RuntimeException, std::exception) { - return OpenGLWindow::getBufferSwapCounter(); + return OpenGLWrapper::getBufferSwapCounter(); } // css:awt:XToolkitRobot |