diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-01-23 02:26:39 +1100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2014-01-22 15:39:26 +0000 |
commit | e6e3ce2c9558d3d5aedec5388011ba408ed555fc (patch) | |
tree | df790a44e939cbe2e25812ae0b2682e669dc617a | |
parent | 5c6781be6a28374d17215be94f83f8d8e2e35b0a (diff) |
Fix misaligned code comment
I accidentally introduced this problem in commit 89a7b8a13285
Moved line of code to before the correct function.
Change-Id: Ic044a5607dc385140ca51d1bf4aa734c0cf99904
Reviewed-on: https://gerrit.libreoffice.org/7595
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Tested-by: Jan-Marek Glogowski <glogow@fbihome.de>
-rw-r--r-- | include/vcl/svapp.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx index f0e9b80ff75c..f0fe3ca960be 100644 --- a/include/vcl/svapp.hxx +++ b/include/vcl/svapp.hxx @@ -631,10 +631,9 @@ public: <TRUE/> if the system font is suitable for our UI <FALSE/> if the test string could not be displayed with the system font */ - - // default name of the application for message dialogs and printing static bool ValidateSystemFont(); + // default name of the application for message dialogs and printing static void SetDisplayName( const OUString& rDisplayName ); static OUString GetDisplayName(); |