summaryrefslogtreecommitdiffstats
path: root/include/oox/drawingml/textfield.hxx
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2013-09-11 15:14:30 +0200
committerThorsten Behrens <tbehrens@suse.com>2013-09-11 18:20:37 +0200
commit3af7e5c320c55e67367ce824944de58672cc772f (patch)
treee4b1947cdd4c13e5d6a9189cc2a4e9c35f3b353f /include/oox/drawingml/textfield.hxx
parent-Werror,-Wformat (diff)
downloadcore-3af7e5c320c55e67367ce824944de58672cc772f.tar.gz
core-3af7e5c320c55e67367ce824944de58672cc772f.zip
Exorcise some cargo-cultness in oox.
- the inline keyword on class methods that have their body defined right there in the class definition is redundant - the explicit keyword on nullary ctors is pointless, there is no implicit conversion happening anyway with those Change-Id: Ie9f44c7948f932ce3a8af871bf73743112d94d03
Diffstat (limited to 'include/oox/drawingml/textfield.hxx')
-rw-r--r--include/oox/drawingml/textfield.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/oox/drawingml/textfield.hxx b/include/oox/drawingml/textfield.hxx
index df98b0302560..0dbfdea2fb31 100644
--- a/include/oox/drawingml/textfield.hxx
+++ b/include/oox/drawingml/textfield.hxx
@@ -35,11 +35,11 @@ class TextField
public:
TextField();
- inline TextParagraphProperties& getTextParagraphProperties() { return maTextParagraphProperties; }
- inline const TextParagraphProperties& getTextParagraphProperties() const { return maTextParagraphProperties; }
+ TextParagraphProperties& getTextParagraphProperties() { return maTextParagraphProperties; }
+ const TextParagraphProperties& getTextParagraphProperties() const { return maTextParagraphProperties; }
- inline void setType( const OUString& sType ) { msType = sType; }
- inline void setUuid( const OUString & sUuid ) { msUuid = sUuid; }
+ void setType( const OUString& sType ) { msType = sType; }
+ void setUuid( const OUString & sUuid ) { msUuid = sUuid; }
virtual sal_Int32 insertAt(
const ::oox::core::XmlFilterBase& rFilterBase,