summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/sfx2/dinfdlg.hxx10
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