diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-12 12:03:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-12 12:56:36 +0100 |
commit | e6a05e9f3276cccce5d72adce24a8d2fee6b8b7b (patch) | |
tree | 884a1b76a39a10f087d695b29cf5deb9b6696131 /include | |
parent | b87bfa5791c4ad7e9ea013ce93b26d18dd53b974 (diff) |
annoyings inlines
Change-Id: I0823b29ac99b99b9e9cd8b402e4de71ac176d784
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/dinfdlg.hxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx index 684dd6c0f940..6926a21a91f0 100644 --- a/include/sfx2/dinfdlg.hxx +++ b/include/sfx2/dinfdlg.hxx @@ -289,11 +289,13 @@ private: CustomPropertyLine* m_pLine; public: - inline CustomPropertiesTypeBox( - vcl::Window* pParent, const ResId& rResId, CustomPropertyLine* pLine ) : - ListBox( pParent, rResId ), m_pLine( pLine ) {} + CustomPropertiesTypeBox(vcl::Window* pParent, const ResId& rResId, CustomPropertyLine* pLine) + : ListBox(pParent, rResId) + , m_pLine(pLine) + { + } - inline CustomPropertyLine* GetLine() const { return m_pLine; } + CustomPropertyLine* GetLine() const { return m_pLine; } }; class CustomPropertiesDateField : public DateField |