summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
authorJesso Clarence Murugan <developer.jesso@gmail.com>2012-07-16 12:18:02 +0300
committerMichael Meeks <michael.meeks@suse.com>2012-07-16 11:44:42 +0100
commit8a768fe2d780bdcb60c0dc0c4bc38410052233a4 (patch)
tree205ac02312712f026a9ab811f4ce10b539687d5a /vcl/source/app
parent1d1e7313ab076c919ce1bd095bac07480cea392f (diff)
Replaced all calls to deprecated function ImplDelData::IsDelete()
Deleted the function ImplDelData::IsDelete() and replaced all calls to it with calls to ImplDelData::IsDead() directly. IsDelete () function itself was only a simple wrapper to IsDead () (and mentioned as deprecated) Change-Id: I71baf68801219cfbe2d2dc41d6bd5e419b9b4a87
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/help.cxx2
-rw-r--r--vcl/source/app/svapp.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx
index 48881ba03561..c57cb7430467 100644
--- a/vcl/source/app/help.cxx
+++ b/vcl/source/app/help.cxx
@@ -400,7 +400,7 @@ void HelpTextWindow::ImplShow()
{
ImplDelData aDogTag( this );
Show( sal_True, SHOW_NOACTIVATE );
- if( !aDogTag.IsDelete() )
+ if( !aDogTag.IsDead() )
Update();
}
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 3611f4386213..c78bb97606dc 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1024,7 +1024,7 @@ void Application::RemoveUserEvent( sal_uLong nUserEvent )
if ( pSVEvent->mpWindow )
{
- if( ! pSVEvent->maDelData.IsDelete() )
+ if( ! pSVEvent->maDelData.IsDead() )
pSVEvent->mpWindow->ImplRemoveDel( &(pSVEvent->maDelData) );
pSVEvent->mpWindow = NULL;
}