diff options
-rw-r--r-- | vcl/inc/unx/gtk/gtkinst.hxx | 5 | ||||
-rw-r--r-- | vcl/unx/gtk/app/gtkinst.cxx | 14 |
2 files changed, 1 insertions, 18 deletions
diff --git a/vcl/inc/unx/gtk/gtkinst.hxx b/vcl/inc/unx/gtk/gtkinst.hxx index ceda30361361..3cabea3d0d26 100644 --- a/vcl/inc/unx/gtk/gtkinst.hxx +++ b/vcl/inc/unx/gtk/gtkinst.hxx @@ -41,10 +41,7 @@ class GtkYieldMutex : public SalYieldMutex std::list<sal_uLong> aYieldStack; public: - GtkYieldMutex(); - virtual void acquire() SAL_OVERRIDE; - virtual void release() SAL_OVERRIDE; - + GtkYieldMutex() {} void ThreadsEnter(); void ThreadsLeave(); }; diff --git a/vcl/unx/gtk/app/gtkinst.cxx b/vcl/unx/gtk/app/gtkinst.cxx index 2165a1ed2e27..c80f14653987 100644 --- a/vcl/unx/gtk/app/gtkinst.cxx +++ b/vcl/unx/gtk/app/gtkinst.cxx @@ -276,20 +276,6 @@ SalPrinter* GtkInstance::CreatePrinter( SalInfoPrinter* pInfoPrinter ) #endif } -GtkYieldMutex::GtkYieldMutex() -{ -} - -void GtkYieldMutex::acquire() -{ - SalYieldMutex::acquire(); -} - -void GtkYieldMutex::release() -{ - SalYieldMutex::release(); -} - /* * These methods always occur in pairs * A ThreadsEnter is followed by a ThreadsLeave |