summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-04-25 15:41:25 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-04-25 15:41:25 +1000
commit0d570aeeb25cabfd7396458aa6eb8f8129abd905 (patch)
tree88e76d229f556bd03f4b401fea73835e9b8d8bed /vcl
parentda8aa9385153893d8da666b490825aecb6fe87dc (diff)
VCL: Remove unused and deprecated debug check function
Change-Id: I3fcf630b8a0ef5be0d98ddc11a746e07885bae53
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/outdev/outdev.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx
index 77265fb3402c..b141ea51593f 100644
--- a/vcl/source/outdev/outdev.cxx
+++ b/vcl/source/outdev/outdev.cxx
@@ -73,23 +73,6 @@ namespace {
}
#endif
-#ifdef DBG_UTIL
-const char* ImplDbgCheckOutputDevice( const void* pObj )
-{
- DBG_TESTSOLARMUTEX();
-
- const OutputDevice* pOutDev = (OutputDevice*)pObj;
-
- if ( (pOutDev->GetOutDevType() != OUTDEV_DONTKNOW) &&
- (pOutDev->GetOutDevType() != OUTDEV_WINDOW) &&
- (pOutDev->GetOutDevType() != OUTDEV_PRINTER) &&
- (pOutDev->GetOutDevType() != OUTDEV_VIRDEV) )
- return "OutputDevice data overwrite";
-
- return NULL;
-}
-#endif
-
struct ImplObjStack
{
ImplObjStack* mpPrev;