summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2012-08-12 18:58:02 +0200
committerCédric Bosdonnat <cedric.bosdonnat@free.fr>2012-08-14 15:17:40 +0200
commitea7b1af01511d147ba7bfea925d407e72723a7db (patch)
treee983639c7ad953297e387e4e1d3c39060f9f98dd
parent2e8b2e6de14d325863d9bc419a461b75c3aaf3d0 (diff)
Moved method declaration in class definition
The following method was added at the bottom and is now moved to all other methods marked as protected. This is a follow-up patch of 401a454c2da7560d5ec41ef07ac116403956c55a. Change-Id: Ib536f93f1565a128a3bb5dff12496005c51acb83
-rw-r--r--dbaccess/source/ui/inc/FieldDescControl.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/FieldDescControl.hxx b/dbaccess/source/ui/inc/FieldDescControl.hxx
index 98d956177c7f..a43f0cc1f028 100644
--- a/dbaccess/source/ui/inc/FieldDescControl.hxx
+++ b/dbaccess/source/ui/inc/FieldDescControl.hxx
@@ -171,6 +171,8 @@ namespace dbaui
const OPropColumnEditCtrl* getColumnCtrl() const { return m_pColumnName; }
+ void implFocusLost(Window* _pWhich);
+
public:
OFieldDescControl( Window* pParent, OTableDesignHelpBar* pHelpBar);
OFieldDescControl( Window* pParent, const ResId& rResId, OTableDesignHelpBar* pHelpBar);
@@ -205,8 +207,6 @@ namespace dbaui
String getControlDefault( const OFieldDescription* _pFieldDescr ,sal_Bool _bCheck = sal_True) const;
inline void setEditWidth(sal_Int32 _nWidth) { m_nWidth = _nWidth; }
- protected:
- void implFocusLost(Window* _pWhich);
};
}
#endif