summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2021-05-12 18:25:33 +1000
committerTomaž Vajngerl <quikee@gmail.com>2021-08-27 13:29:25 +0200
commit6146409978e1a2834c85acff33485f69164ae735 (patch)
treef159a1d7a633840dedae7308187b5683486f7a64
parentec52161eb5bd71ee5bcb1dd6cf0cb596da39fa48 (diff)
vcl: remove unnecessary OutputDevice::GetGCStackDepth()
Change-Id: I067299d028a0f25314a4312462ee8e7d0e1f92bb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115464 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
-rw-r--r--include/vcl/outdev.hxx5
-rw-r--r--vcl/source/outdev/outdevstate.cxx7
2 files changed, 1 insertions, 11 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index 7d4a7e533356..011fc5445e0c 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -463,11 +463,6 @@ public:
void Push( PushFlags nFlags = PushFlags::ALL );
void Pop();
-
- // returns the current stack depth; that is the number of Push() calls minus the number of Pop() calls
- // this should not normally be used since Push and Pop must always be used symmetrically
- // however this may be e.g. a help when debugging code in which this somehow is not the case
- sal_uInt32 GetGCStackDepth() const;
void ClearStack();
void EnableOutput( bool bEnable = true );
diff --git a/vcl/source/outdev/outdevstate.cxx b/vcl/source/outdev/outdevstate.cxx
index 41ee775a84e6..108d57dff9e2 100644
--- a/vcl/source/outdev/outdevstate.cxx
+++ b/vcl/source/outdev/outdevstate.cxx
@@ -194,14 +194,9 @@ void OutputDevice::Pop()
mpMetaFile = pOldMetaFile;
}
-sal_uInt32 OutputDevice::GetGCStackDepth() const
-{
- return maOutDevStateStack.size();
-}
-
void OutputDevice::ClearStack()
{
- sal_uInt32 nCount = GetGCStackDepth();
+ sal_uInt32 nCount = maOutDevStateStack.size();
while( nCount-- )
Pop();
}