diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 09:48:22 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 09:48:22 +0000 |
commit | 4238a23861d8d672f1fbb77f07389cbfff33b215 (patch) | |
tree | cd99c19cb99da617d98c0368cc9a6e53fef5ef2c /fpicker | |
parent | fbca36253b11639234ec8cff03b3566b00ba0f54 (diff) |
INTEGRATION: CWS sb59 (1.8.100); FILE MERGED
2006/08/10 12:04:47 sb 1.8.100.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/win32/filepicker/FileOpenDlg.hxx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/fpicker/source/win32/filepicker/FileOpenDlg.hxx b/fpicker/source/win32/filepicker/FileOpenDlg.hxx index 306ea4aacd44..9ee4491d9744 100644 --- a/fpicker/source/win32/filepicker/FileOpenDlg.hxx +++ b/fpicker/source/win32/filepicker/FileOpenDlg.hxx @@ -4,9 +4,9 @@ * * $RCSfile: FileOpenDlg.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-08 23:38:08 $ + * last change: $Author: obo $ $Date: 2006-10-12 10:48:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -52,7 +52,13 @@ #include <rtl/ustrbuf.hxx> #endif +#if defined _MSC_VER +#pragma warning(push, 1) +#endif #include <windows.h> +#if defined _MSC_VER +#pragma warning(pop) +#endif #ifndef _GETFILENAMEWRAPPER_HXX_ #include "getfilenamewrapper.hxx" @@ -272,8 +278,7 @@ protected: virtual void SAL_CALL onFolderChanged(); virtual void SAL_CALL onTypeChanged(sal_uInt32 nFilterIndex); - // call base class method first when overloading - virtual void SAL_CALL onInitDialog(HWND hwndDlg, HWND hwndChild); + virtual void SAL_CALL onInitDialog(HWND hwndDlg) = 0; virtual sal_uInt32 SAL_CALL onCtrlCommand(HWND hwndDlg, sal_uInt16 ctrlId, sal_uInt16 notifyCode); |