diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-07-10 16:13:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-07-10 19:12:39 +0100 |
commit | ec950f8ebb2745ccff2275dcc09d2034cd73dfeb (patch) | |
tree | 4717b5ae728a90ef39b66f2cd1f04e46d023eed8 /include | |
parent | cc8ffd0f49662aaa9d754239c071b207327c896f (diff) |
ditch the font/screen-scaling thing
its of limited utility wrt the vcl layout work and optimal size widgets,
and its confuses people looking for hidpi settings
Change-Id: I37d21b480446f9fe2845b3a2d9fd59cdeddf1a93
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/apearcfg.hxx | 4 | ||||
-rw-r--r-- | include/vcl/settings.hxx | 6 |
2 files changed, 0 insertions, 10 deletions
diff --git a/include/svtools/apearcfg.hxx b/include/svtools/apearcfg.hxx index 2dd178800a36..98cd37c57aa5 100644 --- a/include/svtools/apearcfg.hxx +++ b/include/svtools/apearcfg.hxx @@ -41,7 +41,6 @@ enum class DragMode { class SVT_DLLPUBLIC SvtTabAppearanceCfg : public utl::ConfigItem { DragMode nDragMode ; - short nScaleFactor ; SnapType nSnapMode ; MouseMiddleButtonAction nMiddleMouse; #if defined( UNX ) @@ -66,9 +65,6 @@ public: DragMode GetDragMode () const { return nDragMode; } - sal_uInt16 GetScaleFactor () const { return nScaleFactor; } - void SetScaleFactor ( sal_uInt16 nSet ); - SnapType GetSnapMode () const { return nSnapMode; } void SetSnapMode ( SnapType nSet ); diff --git a/include/vcl/settings.hxx b/include/vcl/settings.hxx index acbacf3346d0..93b78d292f62 100644 --- a/include/vcl/settings.hxx +++ b/include/vcl/settings.hxx @@ -501,12 +501,6 @@ public: void SetCursorBlinkTime( sal_uInt64 nBlinkTime ); sal_uInt64 GetCursorBlinkTime() const; - void SetScreenZoom( sal_uInt16 nPercent ); - sal_uInt16 GetScreenZoom() const; - - void SetScreenFontZoom( sal_uInt16 nPercent ); - sal_uInt16 GetScreenFontZoom() const; - void SetDragFullOptions( DragFullOptions nOptions ); DragFullOptions GetDragFullOptions() const; |