summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-07-11 12:40:42 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-07-11 12:40:42 +0000
commite812dfabf64fb8217d1754d194fe6eb431c9448d (patch)
treeb766b1cd9d3c2ecef033456b3ab4c3a61d717607 /sdext
parent3302b3361692f130954d0ad4fa34923350ee49da (diff)
INTEGRATION: CWS presenterfixes (1.4.2); FILE MERGED
2008/06/11 07:44:44 af 1.4.2.1: #i88837# Signature of PresenterNotesView::ChangeFontSize() has changed.
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterProtocolHandler.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sdext/source/presenter/PresenterProtocolHandler.cxx b/sdext/source/presenter/PresenterProtocolHandler.cxx
index 44cbec6c3bc1..e9cc273d2c64 100644
--- a/sdext/source/presenter/PresenterProtocolHandler.cxx
+++ b/sdext/source/presenter/PresenterProtocolHandler.cxx
@@ -8,7 +8,7 @@
*
* $RCSfile: PresenterProtocolHandler.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
* This file is part of OpenOffice.org.
*
@@ -161,7 +161,7 @@ namespace {
public:
NotesFontSizeCommand(
const rtl::Reference<PresenterController>& rpPresenterController,
- const double nSizeChange);
+ const sal_Int32 nSizeChange);
virtual ~NotesFontSizeCommand (void) {}
virtual void Execute (void);
virtual bool IsEnabled (void) const;
@@ -170,7 +170,7 @@ namespace {
::rtl::Reference<PresenterNotesView> GetNotesView (void) const;
private:
rtl::Reference<PresenterController> mpPresenterController;
- const double mnSizeChange;
+ const sal_Int32 mnSizeChange;
};
} // end of anonymous namespace
@@ -951,7 +951,7 @@ Any SetHelpViewCommand::GetState (void) const
NotesFontSizeCommand::NotesFontSizeCommand(
const rtl::Reference<PresenterController>& rpPresenterController,
- const double nSizeChange)
+ const sal_Int32 nSizeChange)
: mpPresenterController(rpPresenterController),
mnSizeChange(nSizeChange)
{