diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-17 15:06:29 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-18 11:27:39 +0200 |
commit | 86725da2a2a0a7ae34f600b53976b72b7d456c9f (patch) | |
tree | 4930b5c773797e6ac5167733e1bbe25d294d8070 /include/sfx2 | |
parent | b466b6f2575b4bf55f84b96d3795260901544209 (diff) |
fix return type of SfxViewShell::HandleNotifyEvent_Impl to be bool
it was long, but it was treated as a bool.
Change-Id: I097ab5f9dff511781a9711594754ae34f25a37bc
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/viewsh.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/viewsh.hxx b/include/sfx2/viewsh.hxx index ae22a37b119a..f87ddd3f6c49 100644 --- a/include/sfx2/viewsh.hxx +++ b/include/sfx2/viewsh.hxx @@ -276,7 +276,7 @@ public: SAL_DLLPRIVATE SfxPrinter* SetPrinter_Impl( SfxPrinter *pNewPrinter ); SAL_DLLPRIVATE sal_Bool IsShowView_Impl() const; - SAL_DLLPRIVATE long HandleNotifyEvent_Impl( NotifyEvent& rEvent ); + SAL_DLLPRIVATE bool HandleNotifyEvent_Impl( NotifyEvent& rEvent ); SAL_DLLPRIVATE sal_Bool HasKeyListeners_Impl(); SAL_DLLPRIVATE sal_Bool HasMouseClickListeners_Impl(); |