summaryrefslogtreecommitdiff
path: root/include/svtools/editbrowsebox.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-23 11:20:40 +0200
committerNoel Grandin <noel@peralex.com>2014-09-23 14:11:39 +0300
commit827c46e7d75000cb03b0ce21759f9d0825f0c096 (patch)
tree3a84ccc45d54607c61328b18f58f914c1d6ec240 /include/svtools/editbrowsebox.hxx
parent7cbbefae224ab85343accb42b03f9431ec693a83 (diff)
fdo#82577: Handle Window
Put the VCL Window class in the vcl namespace. Avoids clash with the X11 Window typedef. Change-Id: Ib1beb7ab4ad75562a42aeb252732a073d25eff1a
Diffstat (limited to 'include/svtools/editbrowsebox.hxx')
-rw-r--r--include/svtools/editbrowsebox.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/svtools/editbrowsebox.hxx b/include/svtools/editbrowsebox.hxx
index 4cb50bd8b89b..db10afd92f49 100644
--- a/include/svtools/editbrowsebox.hxx
+++ b/include/svtools/editbrowsebox.hxx
@@ -189,7 +189,7 @@ namespace svt
class SVT_DLLPUBLIC MultiLineTextCell : public MultiLineEdit
{
public:
- MultiLineTextCell( Window* _pParent, WinBits _nStyle )
+ MultiLineTextCell( vcl::Window* _pParent, WinBits _nStyle )
:MultiLineEdit( _pParent, _nStyle )
{
}
@@ -277,7 +277,7 @@ namespace svt
Link m_aClickLink,m_aModifyLink;
public:
- CheckBoxControl(Window* pParent, WinBits nWinStyle = 0);
+ CheckBoxControl(vcl::Window* pParent, WinBits nWinStyle = 0);
virtual ~CheckBoxControl();
virtual void GetFocus() SAL_OVERRIDE;
@@ -327,7 +327,7 @@ namespace svt
friend class ComboBoxCellController;
public:
- ComboBoxControl(Window* pParent, WinBits nWinStyle = 0);
+ ComboBoxControl(vcl::Window* pParent, WinBits nWinStyle = 0);
protected:
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
@@ -360,7 +360,7 @@ namespace svt
friend class ListBoxCellController;
public:
- ListBoxControl(Window* pParent, WinBits nWinStyle = 0);
+ ListBoxControl(vcl::Window* pParent, WinBits nWinStyle = 0);
protected:
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
@@ -472,7 +472,7 @@ namespace svt
aOldController;
ImplSVEvent * nStartEvent, * nEndEvent, * nCellModifiedEvent; // event ids
- Window* m_pFocusWhileRequest;
+ vcl::Window* m_pFocusWhileRequest;
// In ActivateCell, we grab the focus asynchronously, but if between requesting activation
// and the asynchornous event the focus has changed, we won't grab it for ourself.
@@ -588,8 +588,8 @@ namespace svt
// secure starting of StartEditHdl
public:
- EditBrowseBox(Window* pParent, sal_Int32 nBrowserFlags = EBBF_NONE, WinBits nBits = WB_TABSTOP, BrowserMode nMode = 0 );
- EditBrowseBox(Window* pParent, const ResId& rId, sal_Int32 nBrowserFlags = EBBF_NONE, BrowserMode nMode = 0 );
+ EditBrowseBox(vcl::Window* pParent, sal_Int32 nBrowserFlags = EBBF_NONE, WinBits nBits = WB_TABSTOP, BrowserMode nMode = 0 );
+ EditBrowseBox(vcl::Window* pParent, const ResId& rId, sal_Int32 nBrowserFlags = EBBF_NONE, BrowserMode nMode = 0 );
virtual ~EditBrowseBox();
bool IsEditing() const {return aController.Is();}