diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2007-07-25 07:45:42 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2007-07-25 07:45:42 +0000 |
commit | 88e70d163635c30a3f7cfd769e04e2c255d1607b (patch) | |
tree | 0ed39202f8a11a8d6359a4c10e613962b73b72ca /chart2/source/controller | |
parent | ec8238c6ea3a6bbdabccb232a200326d5f50fd25 (diff) |
INTEGRATION: CWS chart07 (1.2.12); FILE MERGED
2007/07/10 13:38:14 bm 1.2.12.1: #i69281# warnings removed
Diffstat (limited to 'chart2/source/controller')
-rw-r--r-- | chart2/source/controller/main/CommandDispatch.cxx | 10 | ||||
-rw-r--r-- | chart2/source/controller/main/DragMethod_PieSegment.cxx | 6 | ||||
-rw-r--r-- | chart2/source/controller/main/StatusBarCommandDispatch.cxx | 12 |
3 files changed, 14 insertions, 14 deletions
diff --git a/chart2/source/controller/main/CommandDispatch.cxx b/chart2/source/controller/main/CommandDispatch.cxx index fc09fa9742ea..8331e434c155 100644 --- a/chart2/source/controller/main/CommandDispatch.cxx +++ b/chart2/source/controller/main/CommandDispatch.cxx @@ -4,9 +4,9 @@ * * $RCSfile: CommandDispatch.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2007-05-22 18:05:57 $ + * last change: $Author: rt $ $Date: 2007-07-25 08:44:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -106,7 +106,7 @@ void SAL_CALL CommandDispatch::disposing() } // ____ XDispatch ____ -void SAL_CALL CommandDispatch::dispatch( const util::URL& URL, const Sequence< beans::PropertyValue >& Arguments ) +void SAL_CALL CommandDispatch::dispatch( const util::URL& /* URL */, const Sequence< beans::PropertyValue >& /* Arguments */ ) throw (uno::RuntimeException) {} @@ -135,14 +135,14 @@ void SAL_CALL CommandDispatch::removeStatusListener( const Reference< frame::XSt } // ____ XModifyListener ____ -void SAL_CALL CommandDispatch::modified( const lang::EventObject& aEvent ) +void SAL_CALL CommandDispatch::modified( const lang::EventObject& /* aEvent */ ) throw (uno::RuntimeException) { fireAllStatusEvents( 0 ); } // ____ XEventListener (base of XModifyListener) ____ -void SAL_CALL CommandDispatch::disposing( const lang::EventObject& Source ) +void SAL_CALL CommandDispatch::disposing( const lang::EventObject& /* Source */ ) throw (uno::RuntimeException) {} diff --git a/chart2/source/controller/main/DragMethod_PieSegment.cxx b/chart2/source/controller/main/DragMethod_PieSegment.cxx index 79a881777763..47f993cd7fbf 100644 --- a/chart2/source/controller/main/DragMethod_PieSegment.cxx +++ b/chart2/source/controller/main/DragMethod_PieSegment.cxx @@ -4,9 +4,9 @@ * * $RCSfile: DragMethod_PieSegment.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2007-05-22 18:07:37 $ + * last change: $Author: rt $ $Date: 2007-07-25 08:45:17 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -148,7 +148,7 @@ void DragMethod_PieSegment::Mov(const Point& rPnt) } } } -FASTBOOL DragMethod_PieSegment::End(FASTBOOL bCopy) +FASTBOOL DragMethod_PieSegment::End(FASTBOOL /* bCopy */) { Hide(); diff --git a/chart2/source/controller/main/StatusBarCommandDispatch.cxx b/chart2/source/controller/main/StatusBarCommandDispatch.cxx index a1bfafd86765..4b760bdd4734 100644 --- a/chart2/source/controller/main/StatusBarCommandDispatch.cxx +++ b/chart2/source/controller/main/StatusBarCommandDispatch.cxx @@ -4,9 +4,9 @@ * * $RCSfile: StatusBarCommandDispatch.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2007-05-22 18:09:28 $ + * last change: $Author: rt $ $Date: 2007-07-25 08:45:42 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -120,8 +120,8 @@ void StatusBarCommandDispatch::fireStatusEvent( // ____ XDispatch ____ void SAL_CALL StatusBarCommandDispatch::dispatch( - const util::URL& URL, - const Sequence< beans::PropertyValue >& Arguments ) + const util::URL& /* URL */, + const Sequence< beans::PropertyValue >& /* Arguments */ ) throw (uno::RuntimeException) { // nothing to do here @@ -136,7 +136,7 @@ void SAL_CALL StatusBarCommandDispatch::disposing() } // ____ XEventListener (base of XModifyListener) ____ -void SAL_CALL StatusBarCommandDispatch::disposing( const lang::EventObject& Source ) +void SAL_CALL StatusBarCommandDispatch::disposing( const lang::EventObject& /* Source */ ) throw (uno::RuntimeException) { m_xModifiable.clear(); @@ -154,7 +154,7 @@ void SAL_CALL StatusBarCommandDispatch::modified( const lang::EventObject& aEven } // ____ XSelectionChangeListener ____ -void SAL_CALL StatusBarCommandDispatch::selectionChanged( const lang::EventObject& aEvent ) +void SAL_CALL StatusBarCommandDispatch::selectionChanged( const lang::EventObject& /* aEvent */ ) throw (uno::RuntimeException) { if( m_xSelectionSupplier.is()) |