summaryrefslogtreecommitdiff
path: root/include/vcl/font.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/font.hxx')
-rw-r--r--include/vcl/font.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/font.hxx b/include/vcl/font.hxx
index 34ccf2ab5dd4..ac8c6d4c2153 100644
--- a/include/vcl/font.hxx
+++ b/include/vcl/font.hxx
@@ -48,7 +48,7 @@ class VCL_DLLPUBLIC Font
public:
explicit Font();
Font( const Font& ); // TODO make me explicit
- Font( Font&& );
+ Font( Font&& ) noexcept;
explicit Font( const OUString& rFamilyName, const Size& );
explicit Font( const OUString& rFamilyName, const OUString& rStyleName, const Size& );
explicit Font( FontFamily eFamily, const Size& );
@@ -150,7 +150,7 @@ public:
void GetFontAttributes( FontAttributes& rAttrs ) const;
Font& operator=( const Font& );
- Font& operator=( Font&& );
+ Font& operator=( Font&& ) noexcept;
bool operator==( const Font& ) const;
bool operator!=( const Font& rFont ) const
{ return !(Font::operator==( rFont )); }