diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-17 18:38:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-17 18:45:17 +0100 |
commit | 00d0a50e3b34e4f93ea2cb201db6e08714b63913 (patch) | |
tree | 2368dd982844e632deb1f442bdfdee7f830f248c /fpicker/source | |
parent | ed1878d27e4fd0a81d37c2f092f300a23748f59b (diff) |
Window::Notify should return bool, redux
Change-Id: Ib41ed9ace428081e1948cf109de095ea9e7c45c2
Diffstat (limited to 'fpicker/source')
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 63aa4a46b5fe..c2ba5316fc57 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -1719,7 +1719,7 @@ bool SvtFileDialog::Notify( NotifyEvent& rNEvt ) { sal_uInt16 nType = rNEvt.GetType(); - long nRet = false; + bool nRet = false; if ( EVENT_KEYINPUT == nType && rNEvt.GetKeyEvent() ) { |