diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-26 20:08:53 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-26 21:34:49 +0200 |
commit | e17302a110c0dd143a4ea11855a3d2c736e49fdd (patch) | |
tree | e09fe47d80939b53f70e84d4eaf4c585ffb9814c /vcl | |
parent | 3dab9849115284f9a126356e2354ad7fb8557663 (diff) |
Revert "Add layout engine info to the About dialog"
This reverts commit f351b3624de79b5806a066202a3a0d6fa59c8469.
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/svids.hrc | 3 | ||||
-rw-r--r-- | vcl/source/app/svapp.cxx | 8 | ||||
-rw-r--r-- | vcl/source/src/app.src | 15 |
3 files changed, 0 insertions, 26 deletions
diff --git a/vcl/inc/svids.hrc b/vcl/inc/svids.hrc index fa27f8b08370..891fe5768ce6 100644 --- a/vcl/inc/svids.hrc +++ b/vcl/inc/svids.hrc @@ -180,9 +180,6 @@ #define SV_APP_GL 10803 #define SV_APP_DEFAULT 10804 #define SV_APP_VCLBACKEND 10805 -#define SV_APP_LAYOUT_ENGINE 10806 -#define SV_APP_LAYOUT_NEW 10807 -#define SV_APP_LAYOUT_OLD 10808 #define SV_ICON_SIZE48_START 20000 #define SV_ICON_SIZE32_START 21000 diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index 2efd08f451e9..af80c7cb3b58 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -57,7 +57,6 @@ #include "salinst.hxx" #include "salframe.hxx" -#include "sallayout.hxx" #include "salsys.hxx" #include "svdata.hxx" #include "salimestatus.hxx" @@ -1219,13 +1218,6 @@ OUString Application::GetHWOSConfInfo() aDetails.append( "; " ); #endif - aDetails.append( VclResId(SV_APP_LAYOUT_ENGINE).toString() ); - if (SalLayout::UseCommonLayout()) - aDetails.append( VclResId(SV_APP_LAYOUT_NEW).toString() ); - else - aDetails.append( VclResId(SV_APP_LAYOUT_OLD).toString() ); - aDetails.append( "; " ); - return aDetails.makeStringAndClear(); } diff --git a/vcl/source/src/app.src b/vcl/source/src/app.src index 0197d984a098..b36686d99d1d 100644 --- a/vcl/source/src/app.src +++ b/vcl/source/src/app.src @@ -39,19 +39,4 @@ String SV_APP_VCLBACKEND Text [ en-US ] = "VCL: "; }; -String SV_APP_LAYOUT_ENGINE -{ - Text [ en-US ] = "Layout Engine: "; -}; - -String SV_APP_LAYOUT_NEW -{ - Text [ en-US ] = "new"; -}; - -String SV_APP_LAYOUT_OLD -{ - Text [ en-US ] = "old"; -}; - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |