summaryrefslogtreecommitdiff
path: root/vcl/source/app/svapp.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-09 13:07:51 +0200
committerNoel Grandin <noel@peralex.com>2015-01-12 12:57:03 +0200
commit4b8f1dc1c8635c412b4669101e8871fa0cf26ff9 (patch)
tree6f0ee2fa1062cc4264185a5ee17dfcd4bcb88e14 /vcl/source/app/svapp.cxx
parent4f1eef278c41997315860158d481d4fc37bd328b (diff)
FocusChanged and DataChanged are never overriden
and their default implementations are empty, so just delete them Change-Id: Ibae2f92c3326ad46c4b6ef462b5b7b62ad63f0d8
Diffstat (limited to 'vcl/source/app/svapp.cxx')
-rw-r--r--vcl/source/app/svapp.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index e67b0c6356e6..ed8cd9f13942 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -222,14 +222,6 @@ bool Application::QueryExit()
return true;
}
-void Application::FocusChanged()
-{
-}
-
-void Application::DataChanged( const DataChangedEvent& )
-{
-}
-
void Application::Init()
{
}
@@ -523,7 +515,6 @@ void Application::SetSettings( const AllSettings& rSettings )
if ( nChangeFlags )
{
DataChangedEvent aDCEvt( DATACHANGED_SETTINGS, &aOldSettings, nChangeFlags );
- GetpApp()->DataChanged( aDCEvt );
// notify data change handler
ImplCallEventListeners( VCLEVENT_APPLICATION_DATACHANGED, NULL, &aDCEvt);