summaryrefslogtreecommitdiff
path: root/fpicker/source/office/pickercallbacks.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/office/pickercallbacks.hxx')
-rw-r--r--fpicker/source/office/pickercallbacks.hxx14
1 files changed, 4 insertions, 10 deletions
diff --git a/fpicker/source/office/pickercallbacks.hxx b/fpicker/source/office/pickercallbacks.hxx
index 115d6fb83017..9c965f7d37f7 100644
--- a/fpicker/source/office/pickercallbacks.hxx
+++ b/fpicker/source/office/pickercallbacks.hxx
@@ -23,35 +23,29 @@
#include <sal/types.h>
#include <rtl/ustring.hxx>
-class Control;
-
+namespace weld { class Widget; }
namespace svt
{
-
-
class IFilePickerController
{
public:
- virtual Control* getControl( sal_Int16 _nControlId, bool _bLabelControl = false ) const = 0;
- virtual void enableControl( sal_Int16 _nControlId, bool _bEnable ) = 0;
+ virtual weld::Widget* getControl( sal_Int16 nControlId, bool bLabelControl = false ) const = 0;
+ virtual void enableControl( sal_Int16 nControlId, bool bEnable ) = 0;
virtual OUString getCurFilter( ) const = 0;
protected:
~IFilePickerController() {}
};
-
class IFilePickerListener
{
public:
- virtual void notify( sal_Int16 _nEventId, sal_Int16 _nControlId ) = 0;
+ virtual void notify( sal_Int16 nEventId, sal_Int16 nControlId ) = 0;
protected:
~IFilePickerListener() {}
};
-
-
} // namespace svt