diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-10-06 08:23:27 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-10-06 08:24:22 +0200 |
commit | c978bd34864a24e58685d5539f3506b9a5f8e8cb (patch) | |
tree | 18549d4884c54399d1f37155383b35f4d617d877 /sd | |
parent | 2ca57fb3a9b3666409dadc515f76942a06902d72 (diff) |
Remove newly unused methods
Change-Id: I050660d095540902b442a86904d70ed544bccf13
Diffstat (limited to 'sd')
4 files changed, 0 insertions, 48 deletions
diff --git a/sd/source/ui/slidesorter/controller/SlsProperties.cxx b/sd/source/ui/slidesorter/controller/SlsProperties.cxx index 1f7cd71d0f59..ccf83b290fb2 100644 --- a/sd/source/ui/slidesorter/controller/SlsProperties.cxx +++ b/sd/source/ui/slidesorter/controller/SlsProperties.cxx @@ -254,14 +254,6 @@ bool Properties::IsOnlyPreviewTriggersMouseOver (void) const } - - -bool Properties::IsHighContrastModeActive (void) const -{ - return mbIsHighContrastModeActive; -} - - } } } // end of namespace ::sd::slidesorter::controller /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx b/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx index 990d66afdb4e..c775e6fc39ac 100644 --- a/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx +++ b/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx @@ -120,7 +120,6 @@ public: */ bool IsOnlyPreviewTriggersMouseOver (void) const; - bool IsHighContrastModeActive (void) const; private: bool mbIsHighlightCurrentSlide; diff --git a/sd/source/ui/slidesorter/inc/view/SlsToolTip.hxx b/sd/source/ui/slidesorter/inc/view/SlsToolTip.hxx index a296568e844a..6df9a88e8143 100644 --- a/sd/source/ui/slidesorter/inc/view/SlsToolTip.hxx +++ b/sd/source/ui/slidesorter/inc/view/SlsToolTip.hxx @@ -54,14 +54,6 @@ public: */ void SetPage (const model::SharedPageDescriptor& rpPage); - /** Show a previously set default help text. - */ - void ShowDefaultHelpText (void); - - /** Show a temporary help text. - */ - void ShowHelpText (const ::rtl::OUString& rsHelpText); - /** Hide the tool tip. @return Returns whether the tool tip was visible at the time this method diff --git a/sd/source/ui/slidesorter/view/SlsToolTip.cxx b/sd/source/ui/slidesorter/view/SlsToolTip.cxx index 217d9290264f..43dfb721d8af 100644 --- a/sd/source/ui/slidesorter/view/SlsToolTip.cxx +++ b/sd/source/ui/slidesorter/view/SlsToolTip.cxx @@ -102,37 +102,6 @@ void ToolTip::SetPage (const model::SharedPageDescriptor& rpDescriptor) - -void ToolTip::ShowDefaultHelpText (void) -{ - if (msCurrentHelpText != msDefaultHelpText) - { - const bool bIsVisible (Hide()); - - msCurrentHelpText = msDefaultHelpText; - - Show(bIsVisible); - } -} - - - - -void ToolTip::ShowHelpText (const ::rtl::OUString& rsHelpText) -{ - if (msCurrentHelpText != rsHelpText) - { - const bool bIsVisible (Hide()); - - msCurrentHelpText = rsHelpText; - - Show(bIsVisible); - } -} - - - - void ToolTip::Show (const bool bNoDelay) { if (bNoDelay) |