summaryrefslogtreecommitdiffstats
path: root/fpicker/source/office/iodlg.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-11-24 22:40:33 +0100
committerMichael Stahl <mstahl@redhat.com>2016-11-24 22:56:34 +0100
commit6bb20609a2fd1d591cedc7fa2b9cabb589c346c7 (patch)
tree8faf98099786b0c7b6520075d376c55bbd3cddd6 /fpicker/source/office/iodlg.cxx
parentSwContentTree: those 3 booleans are mutually exclusive (diff)
downloadcore-6bb20609a2fd1d591cedc7fa2b9cabb589c346c7.tar.gz
core-6bb20609a2fd1d591cedc7fa2b9cabb589c346c7.zip
vcl: rename Window::Notify to EventNotify
There is annoying overloading between Window::Notify and SfxListener::Notify, and the Window one has apparently fewer implementations, so rename that and remove lots of disambiguating "using Notify" in multiply inheriting classes. Change-Id: I8b597fd9e70cf2e7103b9dfa7cc666e79e7aff49
Diffstat (limited to 'fpicker/source/office/iodlg.cxx')
-rw-r--r--fpicker/source/office/iodlg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index fc6418b1465e..b820f60df0d5 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -444,7 +444,7 @@ public:
}
}
- virtual bool Notify( NotifyEvent& rNEvt ) override
+ virtual bool EventNotify( NotifyEvent& rNEvt ) override
{
if( rNEvt.GetType() == MouseNotifyEvent::GETFOCUS )
{
@@ -473,7 +473,7 @@ public:
return true;
}
}
- return Window::Notify( rNEvt );
+ return Window::EventNotify(rNEvt);
}
};
@@ -1548,7 +1548,7 @@ IMPL_LINK_NOARG(SvtFileDialog, PlayButtonHdl_Impl, Button*, void)
}
-bool SvtFileDialog::Notify( NotifyEvent& rNEvt )
+bool SvtFileDialog::EventNotify( NotifyEvent& rNEvt )
/* [Description]
@@ -1576,7 +1576,7 @@ bool SvtFileDialog::Notify( NotifyEvent& rNEvt )
}
}
}
- return bRet || ModalDialog::Notify( rNEvt );
+ return bRet || ModalDialog::EventNotify(rNEvt);
}
namespace