summaryrefslogtreecommitdiff
path: root/include/vcl/field.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/field.hxx')
-rw-r--r--include/vcl/field.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/field.hxx b/include/vcl/field.hxx
index e8b79ad3742f..973f12421347 100644
--- a/include/vcl/field.hxx
+++ b/include/vcl/field.hxx
@@ -348,7 +348,7 @@ public:
when the control loses the focus - instead, the invalid input will be preserved.
*/
void EnforceValidValue( bool _bEnforce ) { mbEnforceValidValue = _bEnforce; }
- inline bool IsEnforceValidValue( ) const { return mbEnforceValidValue; }
+ bool IsEnforceValidValue( ) const { return mbEnforceValidValue; }
};
@@ -421,7 +421,7 @@ public:
when the control loses the focus - instead, the invalid input will be preserved.
*/
void EnforceValidValue( bool _bEnforce ) { mbEnforceValidValue = _bEnforce; }
- inline bool IsEnforceValidValue( ) const { return mbEnforceValidValue; }
+ bool IsEnforceValidValue( ) const { return mbEnforceValidValue; }
};
@@ -481,13 +481,13 @@ public:
virtual void SetUnit( FieldUnit meUnit ) override;
void SetFirst( sal_Int64 nNewFirst, FieldUnit eInUnit );
- inline void SetFirst(sal_Int64 first) { SetFirst(first, FUNIT_NONE); }
+ void SetFirst(sal_Int64 first) { SetFirst(first, FUNIT_NONE); }
sal_Int64 GetFirst( FieldUnit eOutUnit ) const;
- inline sal_Int64 GetFirst() const { return GetFirst(FUNIT_NONE); }
+ sal_Int64 GetFirst() const { return GetFirst(FUNIT_NONE); }
void SetLast( sal_Int64 nNewLast, FieldUnit eInUnit );
- inline void SetLast(sal_Int64 last) { SetLast(last, FUNIT_NONE); }
+ void SetLast(sal_Int64 last) { SetLast(last, FUNIT_NONE); }
sal_Int64 GetLast( FieldUnit eOutUnit ) const;
- inline sal_Int64 GetLast() const { return GetLast(FUNIT_NONE); }
+ sal_Int64 GetLast() const { return GetLast(FUNIT_NONE); }
static void SetDefaultUnit( FieldUnit eDefaultUnit );
static FieldUnit GetDefaultUnit();