summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-22 21:20:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-23 03:38:49 +0000
commit0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch)
tree5024cba9f9ea5e3b23ea26025323f6aef39488d0 /sdext
parentb81ac16e65b311d6e43c05c22c65d2040c9d7e04 (diff)
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/minimizer/informationdialog.cxx14
-rw-r--r--sdext/source/minimizer/optimizationstats.cxx12
-rw-r--r--sdext/source/minimizer/optimizerdialog.cxx38
-rw-r--r--sdext/source/minimizer/optimizerdialogcontrols.cxx36
-rw-r--r--sdext/source/minimizer/pppoptimizer.cxx2
-rw-r--r--sdext/source/minimizer/unodialog.cxx40
-rw-r--r--sdext/source/pdfimport/pdfiadaptor.cxx2
-rw-r--r--sdext/source/pdfimport/wrapper/wrapper.cxx2
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx4
-rw-r--r--sdext/source/presenter/PresenterButton.cxx2
-rw-r--r--sdext/source/presenter/PresenterController.cxx2
-rw-r--r--sdext/source/presenter/PresenterHelpView.cxx2
-rw-r--r--sdext/source/presenter/PresenterNotesView.cxx2
-rw-r--r--sdext/source/presenter/PresenterPane.cxx2
-rw-r--r--sdext/source/presenter/PresenterPaneBase.cxx2
-rw-r--r--sdext/source/presenter/PresenterPaneBorderManager.cxx2
-rw-r--r--sdext/source/presenter/PresenterPaneBorderPainter.cxx2
-rw-r--r--sdext/source/presenter/PresenterPaneFactory.cxx2
-rw-r--r--sdext/source/presenter/PresenterProtocolHandler.cxx2
-rw-r--r--sdext/source/presenter/PresenterScreen.cxx2
-rw-r--r--sdext/source/presenter/PresenterScrollBar.cxx2
-rw-r--r--sdext/source/presenter/PresenterSlidePreview.cxx2
-rw-r--r--sdext/source/presenter/PresenterSlideShowView.cxx2
-rw-r--r--sdext/source/presenter/PresenterSlideSorter.cxx2
-rw-r--r--sdext/source/presenter/PresenterSpritePane.cxx2
-rw-r--r--sdext/source/presenter/PresenterToolBar.cxx2
-rw-r--r--sdext/source/presenter/PresenterViewFactory.cxx2
-rw-r--r--sdext/source/presenter/PresenterWindowManager.cxx2
28 files changed, 94 insertions, 94 deletions
diff --git a/sdext/source/minimizer/informationdialog.cxx b/sdext/source/minimizer/informationdialog.cxx
index 28ab1ce37f8b..11c14e713268 100644
--- a/sdext/source/minimizer/informationdialog.cxx
+++ b/sdext/source/minimizer/informationdialog.cxx
@@ -37,9 +37,9 @@
#define PAGE_WIDTH ( DIALOG_WIDTH - PAGE_POS_X ) - 6
-// ---------------------
+
// - INFORMATIONDIALOG -
-// ---------------------
+
using namespace ::rtl;
using namespace ::com::sun::star;
@@ -56,7 +56,7 @@ using namespace ::com::sun::star::container;
-// -----------------------------------------------------------------------------
+
OUString InsertFixedText( InformationDialog& rInformationDialog, const OUString& rControlName, const OUString& rLabel,
sal_Int32 nXPos, sal_Int32 nYPos, sal_Int32 nWidth, sal_Int32 nHeight, sal_Bool bMultiLine, sal_Int16 nTabIndex )
@@ -311,7 +311,7 @@ void InformationDialog::InitDialog()
setControlProperty( "OpenNewDocument", "State", Any( (sal_Int16)bOpenNewDocument ) );
}
-// -----------------------------------------------------------------------------
+
InformationDialog::InformationDialog( const Reference< XComponentContext > &rxContext, Reference< XFrame >& rxFrame, const OUString& rSaveAsURL, sal_Bool& rbOpenNewDocument, const sal_Int64& rSourceSize, const sal_Int64& rDestSize, const sal_Int64& rApproxSize ) :
UnoDialog( rxContext, rxFrame ),
@@ -333,13 +333,13 @@ InformationDialog::InformationDialog( const Reference< XComponentContext > &rxCo
InitDialog();
}
-// -----------------------------------------------------------------------------
+
InformationDialog::~InformationDialog()
{
}
-// -----------------------------------------------------------------------------
+
sal_Bool InformationDialog::execute()
{
@@ -358,7 +358,7 @@ sal_Bool InformationDialog::execute()
return mbStatus;
}
-// -----------------------------------------------------------------------------
+
void OKActionListener::actionPerformed( const ActionEvent& rEvent )
throw ( com::sun::star::uno::RuntimeException )
diff --git a/sdext/source/minimizer/optimizationstats.cxx b/sdext/source/minimizer/optimizationstats.cxx
index 89f67e11613a..046961d118c7 100644
--- a/sdext/source/minimizer/optimizationstats.cxx
+++ b/sdext/source/minimizer/optimizationstats.cxx
@@ -32,20 +32,20 @@ using namespace ::com::sun::star::frame;
using namespace ::com::sun::star::drawing;
using namespace ::com::sun::star::beans;
-// -----------------------------------------------------------------------------
+
OptimizationStats::OptimizationStats()
{
}
-// -----------------------------------------------------------------------------
+
void OptimizationStats::SetStatusValue( const PPPOptimizerTokenEnum eStat, const uno::Any& rStatValue )
{
maStats[ eStat ] = rStatValue;
}
-// -----------------------------------------------------------------------------
+
const uno::Any* OptimizationStats::GetStatusValue( const PPPOptimizerTokenEnum eStat ) const
{
@@ -53,7 +53,7 @@ const uno::Any* OptimizationStats::GetStatusValue( const PPPOptimizerTokenEnum e
return aIter != maStats.end() ? &((*aIter).second) : NULL;
}
-// -----------------------------------------------------------------------------
+
com::sun::star::beans::PropertyValues OptimizationStats::GetStatusSequence()
{
@@ -68,7 +68,7 @@ com::sun::star::beans::PropertyValues OptimizationStats::GetStatusSequence()
return aStatsSequence;
}
-// -----------------------------------------------------------------------------
+
void OptimizationStats::InitializeStatusValues( const uno::Sequence< PropertyValue >& rOptimizationStats )
{
@@ -76,7 +76,7 @@ void OptimizationStats::InitializeStatusValues( const uno::Sequence< PropertyVal
rOptimizationStats[ i ].Value >>= maStats[ TKGet( rOptimizationStats[ i ].Name ) ];
}
-// -----------------------------------------------------------------------------
+
void OptimizationStats::InitializeStatusValuesFromDocument( Reference< XModel > rxModel )
{
diff --git a/sdext/source/minimizer/optimizerdialog.cxx b/sdext/source/minimizer/optimizerdialog.cxx
index 4a28738cad9a..4aea11c751b6 100644
--- a/sdext/source/minimizer/optimizerdialog.cxx
+++ b/sdext/source/minimizer/optimizerdialog.cxx
@@ -30,9 +30,9 @@
#include <sal/macros.h>
#include <osl/time.h>
-// -------------------
+
// - OPTIMIZERDIALOG -
-// -------------------
+
using namespace ::rtl;
using namespace ::com::sun::star::io;
@@ -48,7 +48,7 @@ using namespace ::com::sun::star::script;
using namespace ::com::sun::star::container;
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::InitDialog()
{
@@ -79,7 +79,7 @@ void OptimizerDialog::InitDialog()
mxDialogModelMultiPropertySet->setPropertyValues( aNames, aValues );
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::InitRoadmap()
{
@@ -134,7 +134,7 @@ void OptimizerDialog::InitRoadmap()
}
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::InsertRoadmapItem( const sal_Int32 nIndex, const sal_Bool bEnabled, const OUString& rLabel, const sal_Int32 nItemID )
{
@@ -155,7 +155,7 @@ void OptimizerDialog::InsertRoadmapItem( const sal_Int32 nIndex, const sal_Bool
}
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::UpdateConfiguration()
{
@@ -204,7 +204,7 @@ void OptimizerDialog::UpdateConfiguration()
}
}
-// -----------------------------------------------------------------------------
+
OptimizerDialog::OptimizerDialog( const Reference< XComponentContext > &rxContext, Reference< XFrame >& rxFrame, Reference< XDispatch > rxStatusDispatcher ) :
UnoDialog( rxContext, rxFrame ),
@@ -240,7 +240,7 @@ OptimizerDialog::OptimizerDialog( const Reference< XComponentContext > &rxContex
UpdateStatus( aStatusSequence );
}
-// -----------------------------------------------------------------------------
+
OptimizerDialog::~OptimizerDialog()
{
@@ -249,7 +249,7 @@ OptimizerDialog::~OptimizerDialog()
SaveConfiguration();
}
-// -----------------------------------------------------------------------------
+
sal_Bool OptimizerDialog::execute()
{
@@ -261,7 +261,7 @@ sal_Bool OptimizerDialog::execute()
return mbStatus;
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::SwitchPage( sal_Int16 nNewStep )
{
@@ -308,7 +308,7 @@ void OptimizerDialog::UpdateControlStates( sal_Int16 nPage )
}
}
-// -----------------------------------------------------------------------------
+
OUString OptimizerDialog::GetSelectedString( OUString const & token )
{
@@ -329,7 +329,7 @@ OUString OptimizerDialog::GetSelectedString( OUString const & token )
return aSelectedItem;
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::UpdateStatus( const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& rStatus )
{
@@ -361,7 +361,7 @@ void OptimizerDialog::UpdateStatus( const com::sun::star::uno::Sequence< com::su
}
}
-// -----------------------------------------------------------------------------
+
void ItemListener::itemStateChanged( const ItemEvent& Event )
throw ( RuntimeException )
@@ -496,7 +496,7 @@ void ItemListener::disposing( const ::com::sun::star::lang::EventObject& /* Sour
{
}
-// -----------------------------------------------------------------------------
+
void ActionListener::actionPerformed( const ActionEvent& rEvent )
throw ( com::sun::star::uno::RuntimeException )
@@ -646,7 +646,7 @@ void ActionListener::disposing( const ::com::sun::star::lang::EventObject& /* So
{
}
-// -----------------------------------------------------------------------------
+
void ActionListenerListBox0Pg0::actionPerformed( const ActionEvent& rEvent )
throw ( com::sun::star::uno::RuntimeException )
@@ -665,7 +665,7 @@ void ActionListenerListBox0Pg0::disposing( const ::com::sun::star::lang::EventOb
{
}
-// -----------------------------------------------------------------------------
+
void TextListenerFormattedField0Pg1::textChanged( const TextEvent& /* rEvent */ )
throw ( com::sun::star::uno::RuntimeException )
@@ -680,7 +680,7 @@ void TextListenerFormattedField0Pg1::disposing( const ::com::sun::star::lang::Ev
{
}
-// -----------------------------------------------------------------------------
+
void TextListenerComboBox0Pg1::textChanged( const TextEvent& /* rEvent */ )
throw ( com::sun::star::uno::RuntimeException )
@@ -709,7 +709,7 @@ void TextListenerComboBox0Pg1::disposing( const ::com::sun::star::lang::EventObj
{
}
-// -----------------------------------------------------------------------------
+
void SpinListenerFormattedField0Pg1::up( const SpinEvent& /* rEvent */ )
throw ( com::sun::star::uno::RuntimeException )
@@ -756,7 +756,7 @@ void SpinListenerFormattedField0Pg1::disposing( const ::com::sun::star::lang::Ev
{
}
-// -----------------------------------------------------------------------------
+
void HelpCloseListener::addCloseListener( const Reference < XCloseListener >& ) throw( RuntimeException )
{
diff --git a/sdext/source/minimizer/optimizerdialogcontrols.cxx b/sdext/source/minimizer/optimizerdialogcontrols.cxx
index 86aae05b244f..bb4049423c81 100644
--- a/sdext/source/minimizer/optimizerdialogcontrols.cxx
+++ b/sdext/source/minimizer/optimizerdialogcontrols.cxx
@@ -20,9 +20,9 @@
#include "optimizerdialog.hxx"
-// -------------------
+
// - OptimizerDialog -
-// -------------------
+
#include "pppoptimizer.hxx"
#include "graphiccollector.hxx"
#include "pagecollector.hxx"
@@ -46,7 +46,7 @@ using namespace ::com::sun::star::drawing;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::presentation;
-// -----------------------------------------------------------------------------
+
void SetBold( OptimizerDialog& rOptimizerDialog, const OUString& rControl )
{
@@ -58,7 +58,7 @@ void SetBold( OptimizerDialog& rOptimizerDialog, const OUString& rControl )
}
}
-// -----------------------------------------------------------------------------
+
OUString InsertSeparator( OptimizerDialog& rOptimizerDialog, const OUString& rControlName, sal_Int32 nOrientation,
sal_Int32 nPosX, sal_Int32 nPosY, sal_Int32 nWidth, sal_Int32 nHeight )
@@ -89,7 +89,7 @@ OUString InsertSeparator( OptimizerDialog& rOptimizerDialog, const OUString& rCo
return rControlName;
}
-// -----------------------------------------------------------------------------
+
OUString InsertButton( OptimizerDialog& rOptimizerDialog, const OUString& rControlName, Reference< XActionListener >& xActionListener,
sal_Int32 nXPos, sal_Int32 nYPos, sal_Int32 nWidth, sal_Int32 nHeight, sal_Int16 nTabIndex, sal_Bool bEnabled, PPPOptimizerTokenEnum nResID, sal_Int16 nPushButtonType )
@@ -126,7 +126,7 @@ OUString InsertButton( OptimizerDialog& rOptimizerDialog, const OUString& rContr
return rControlName;
}
-// -----------------------------------------------------------------------------
+
OUString InsertFixedText( OptimizerDialog& rOptimizerDialog, const OUString& rControlName, const OUString& rLabel,
sal_Int32 nXPos, sal_Int32 nYPos, sal_Int32 nWidth, sal_Int32 nHeight, sal_Bool bMultiLine, sal_Bool bBold, sal_Int16 nTabIndex )
@@ -162,7 +162,7 @@ OUString InsertFixedText( OptimizerDialog& rOptimizerDialog, const OUString& rCo
return rControlName;
}
-// -----------------------------------------------------------------------------
+
OUString InsertCheckBox( OptimizerDialog& rOptimizerDialog, const OUString& rControlName,
const Reference< XItemListener > xItemListener, const OUString& rLabel,
@@ -199,7 +199,7 @@ OUString InsertCheckBox( OptimizerDialog& rOptimizerDialog, const OUString& rCon
return rControlName;
}
-// -----------------------------------------------------------------------------
+
OUString InsertFormattedField( OptimizerDialog& rOptimizerDialog, const OUString& rControlName,
const Reference< XTextListener > xTextListener, const Reference< XSpinListener > xSpinListener, sal_Int32 nXPos, sal_Int32 nYPos, sal_Int32 nWidth,
@@ -247,7 +247,7 @@ OUString InsertFormattedField( OptimizerDialog& rOptimizerDialog, const OUString
return rControlName;
}
-// -----------------------------------------------------------------------------
+
OUString InsertComboBox( OptimizerDialog& rOptimizerDialog, const OUString& rControlName,
const Reference< XTextListener > xTextListener, const sal_Bool bEnabled, const Sequence< OUString >& rItemList,
@@ -288,7 +288,7 @@ OUString InsertComboBox( OptimizerDialog& rOptimizerDialog, const OUString& rCon
return rControlName;
}
-// -----------------------------------------------------------------------------
+
OUString InsertRadioButton( OptimizerDialog& rOptimizerDialog, const OUString& rControlName, const Reference< XItemListener > xItemListener,
const OUString& rLabel, sal_Int32 nXPos, sal_Int32 nYPos, sal_Int32 nWidth, sal_Int32 nHeight, sal_Bool bMultiLine, sal_Int16 nTabIndex )
@@ -324,7 +324,7 @@ OUString InsertRadioButton( OptimizerDialog& rOptimizerDialog, const OUString& r
return rControlName;
}
-// -----------------------------------------------------------------------------
+
OUString InsertListBox( OptimizerDialog& rOptimizerDialog, const OUString& rControlName,
const Reference< XActionListener > xActionListener, const sal_Bool bEnabled, const Sequence< OUString >& rItemList,
@@ -367,7 +367,7 @@ OUString InsertListBox( OptimizerDialog& rOptimizerDialog, const OUString& rCont
return rControlName;
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::InitNavigationBar()
{
@@ -387,7 +387,7 @@ void OptimizerDialog::InitNavigationBar()
setControlProperty( "btnNavNext", "DefaultButton", Any( sal_True ) );
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::UpdateControlStatesPage0()
{
@@ -436,7 +436,7 @@ void OptimizerDialog::InitPage0()
UpdateControlStatesPage0();
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::UpdateControlStatesPage1()
{
@@ -476,7 +476,7 @@ void OptimizerDialog::InitPage1()
UpdateControlStatesPage1();
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::UpdateControlStatesPage2()
{
@@ -541,7 +541,7 @@ void OptimizerDialog::InitPage2()
UpdateControlStatesPage2();
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::UpdateControlStatesPage3()
{
@@ -583,7 +583,7 @@ void OptimizerDialog::InitPage3()
UpdateControlStatesPage3();
}
-// -----------------------------------------------------------------------------
+
static OUString ImpValueOfInMB( const sal_Int64& rVal, sal_Unicode nSeparator = '.' )
{
@@ -917,7 +917,7 @@ void OptimizerDialog::InitPage4()
UpdateControlStatesPage4();
}
-// -----------------------------------------------------------------------------
+
void OptimizerDialog::EnablePage( sal_Int16 nStep )
{
std::vector< OUString >::iterator aBeg( maControlPages[ nStep ].begin() );
diff --git a/sdext/source/minimizer/pppoptimizer.cxx b/sdext/source/minimizer/pppoptimizer.cxx
index b6679e82ad46..e0dc626c7630 100644
--- a/sdext/source/minimizer/pppoptimizer.cxx
+++ b/sdext/source/minimizer/pppoptimizer.cxx
@@ -63,7 +63,7 @@ Reference< com::sun::star::frame::XDispatch > SAL_CALL PPPOptimizer::queryDispat
return xRet;
}
-//------------------------------------------------------------------------------
+
Sequence< Reference< com::sun::star::frame::XDispatch > > SAL_CALL PPPOptimizer::queryDispatches(
const Sequence< com::sun::star::frame::DispatchDescriptor >& aDescripts ) throw( RuntimeException )
diff --git a/sdext/source/minimizer/unodialog.cxx b/sdext/source/minimizer/unodialog.cxx
index f1a3e7062dcb..903225cc361a 100644
--- a/sdext/source/minimizer/unodialog.cxx
+++ b/sdext/source/minimizer/unodialog.cxx
@@ -30,9 +30,9 @@
#include <com/sun/star/view/XSelectionSupplier.hpp>
#include <com/sun/star/view/XControlAccess.hpp>
-// -------------
+
// - UnoDialog -
-// -------------
+
using namespace ::rtl;
using namespace ::com::sun::star::awt;
@@ -67,14 +67,14 @@ UnoDialog::UnoDialog( const Reference< XComponentContext > &rxContext, Reference
createWindowPeer( mxWindowPeer );
}
-// -----------------------------------------------------------------------------
+
UnoDialog::~UnoDialog()
{
}
-// -----------------------------------------------------------------------------
+
void UnoDialog::execute()
{
@@ -89,7 +89,7 @@ void UnoDialog::endExecute( sal_Bool bStatus )
mxDialog->endExecute();
}
-// -----------------------------------------------------------------------------
+
Reference< XWindowPeer > UnoDialog::createWindowPeer( Reference< XWindowPeer > xParentPeer )
throw ( Exception )
@@ -104,7 +104,7 @@ Reference< XWindowPeer > UnoDialog::createWindowPeer( Reference< XWindowPeer > x
return mxDialog->getPeer();
}
-// -----------------------------------------------------------------------------
+
Reference< XInterface > UnoDialog::insertControlModel( const OUString& rServiceName, const OUString& rName,
const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
@@ -123,7 +123,7 @@ Reference< XInterface > UnoDialog::insertControlModel( const OUString& rServiceN
return xControlModel;
}
-// -----------------------------------------------------------------------------
+
void UnoDialog::setVisible( const OUString& rName, sal_Bool bVisible )
{
@@ -138,7 +138,7 @@ void UnoDialog::setVisible( const OUString& rName, sal_Bool bVisible )
}
}
-// -----------------------------------------------------------------------------
+
Reference< XButton > UnoDialog::insertButton( const OUString& rName, Reference< XActionListener > xActionListener,
const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
@@ -165,7 +165,7 @@ Reference< XButton > UnoDialog::insertButton( const OUString& rName, Reference<
return xButton;
}
-// -----------------------------------------------------------------------------
+
Reference< XFixedText > UnoDialog::insertFixedText( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
{
@@ -183,7 +183,7 @@ Reference< XFixedText > UnoDialog::insertFixedText( const OUString& rName, const
return xFixedText;
}
-// -----------------------------------------------------------------------------
+
Reference< XCheckBox > UnoDialog::insertCheckBox( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
{
@@ -201,7 +201,7 @@ Reference< XCheckBox > UnoDialog::insertCheckBox( const OUString& rName, const S
return xCheckBox;
}
-// -----------------------------------------------------------------------------
+
Reference< XControl > UnoDialog::insertFormattedField( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
{
@@ -219,7 +219,7 @@ Reference< XControl > UnoDialog::insertFormattedField( const OUString& rName, co
return xControl;
}
-// -----------------------------------------------------------------------------
+
Reference< XComboBox > UnoDialog::insertComboBox( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
{
@@ -237,7 +237,7 @@ Reference< XComboBox > UnoDialog::insertComboBox( const OUString& rName, const S
return xControl;
}
-// -----------------------------------------------------------------------------
+
Reference< XRadioButton > UnoDialog::insertRadioButton( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
{
@@ -255,7 +255,7 @@ Reference< XRadioButton > UnoDialog::insertRadioButton( const OUString& rName, c
return xControl;
}
-// -----------------------------------------------------------------------------
+
Reference< XListBox > UnoDialog::insertListBox( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
{
@@ -273,7 +273,7 @@ Reference< XListBox > UnoDialog::insertListBox( const OUString& rName, const Seq
return xControl;
}
-// -----------------------------------------------------------------------------
+
Reference< XControl > UnoDialog::insertImage( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
{
@@ -291,7 +291,7 @@ Reference< XControl > UnoDialog::insertImage( const OUString& rName, const Seque
return xControl;
}
-// -----------------------------------------------------------------------------
+
void UnoDialog::setControlProperty( const OUString& rControlName, const OUString& rPropertyName, const Any& rPropertyValue )
{
@@ -308,7 +308,7 @@ void UnoDialog::setControlProperty( const OUString& rControlName, const OUString
}
}
-// -----------------------------------------------------------------------------
+
Any UnoDialog::getControlProperty( const OUString& rControlName, const OUString& rPropertyName )
{
@@ -327,7 +327,7 @@ Any UnoDialog::getControlProperty( const OUString& rControlName, const OUString&
return aRet;
}
-// -----------------------------------------------------------------------------
+
void UnoDialog::enableControl( const OUString& rControlName )
{
@@ -335,7 +335,7 @@ void UnoDialog::enableControl( const OUString& rControlName )
setControlProperty( rControlName, sEnabled, Any( sal_True ) );
}
-// -----------------------------------------------------------------------------
+
void UnoDialog::disableControl( const OUString& rControlName )
{
@@ -343,6 +343,6 @@ void UnoDialog::disableControl( const OUString& rControlName )
setControlProperty( rControlName, sEnabled, Any( sal_False ) );
}
-// -----------------------------------------------------------------------------
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sdext/source/pdfimport/pdfiadaptor.cxx b/sdext/source/pdfimport/pdfiadaptor.cxx
index 3ac732c318cb..964f30bfd2ff 100644
--- a/sdext/source/pdfimport/pdfiadaptor.cxx
+++ b/sdext/source/pdfimport/pdfiadaptor.cxx
@@ -200,7 +200,7 @@ void SAL_CALL PDFIHybridAdaptor::setTargetDocument( const uno::Reference< lang::
throw lang::IllegalArgumentException();
}
-//---------------------------------------------------------------------------------------
+
PDFIRawAdaptor::PDFIRawAdaptor( const uno::Reference< uno::XComponentContext >& xContext ) :
PDFIAdaptorBase( m_aMutex ),
diff --git a/sdext/source/pdfimport/wrapper/wrapper.cxx b/sdext/source/pdfimport/wrapper/wrapper.cxx
index e4cde0391be6..bfa11ee95c80 100644
--- a/sdext/source/pdfimport/wrapper/wrapper.cxx
+++ b/sdext/source/pdfimport/wrapper/wrapper.cxx
@@ -1029,7 +1029,7 @@ bool xpdf_ImportFromFile( const OUString& rURL,
}
// spawn separate process to keep LGPL/GPL code apart.
- // ---------------------------------------------------
+
rtl_uString** ppEnv = NULL;
sal_uInt32 nEnv = 0;
diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
index 4704f5b2bcdd..391f755f07ed 100644
--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
+++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
@@ -368,7 +368,7 @@ void writeImage_( OutputBuffer& o_rOutputBuf,
}
// forwarders
-// ------------------------------------------------------------------
+
inline void writeImage( OutputBuffer& o_rOutputBuf,
Stream* str,
@@ -391,7 +391,7 @@ inline void writeMaskLF( OutputBuffer& o_rOutputBuf,
int height,
bool bInvert ) { writeMask_(o_rOutputBuf,str,width,height,true,bInvert); }
-// ------------------------------------------------------------------
+
int PDFOutDev::parseFont( long long nNewId, GfxFont* gfxFont, GfxState* state ) const
diff --git a/sdext/source/presenter/PresenterButton.cxx b/sdext/source/presenter/PresenterButton.cxx
index 14c477f8a143..9b916ba58ead 100644
--- a/sdext/source/presenter/PresenterButton.cxx
+++ b/sdext/source/presenter/PresenterButton.cxx
@@ -361,7 +361,7 @@ void SAL_CALL PresenterButton::disposing (const css::lang::EventObject& rEvent)
mxWindow = NULL;
}
-//-----------------------------------------------------------------------------
+
css::geometry::IntegerSize2D PresenterButton::CalculateButtonSize (void)
{
diff --git a/sdext/source/presenter/PresenterController.cxx b/sdext/source/presenter/PresenterController.cxx
index 573066745d42..37d7bbb908bb 100644
--- a/sdext/source/presenter/PresenterController.cxx
+++ b/sdext/source/presenter/PresenterController.cxx
@@ -1079,7 +1079,7 @@ void SAL_CALL PresenterController::mouseDragged (const css::awt::MouseEvent& rEv
(void)rEvent;
}
-//-----------------------------------------------------------------------------
+
void PresenterController::InitializeMainPane (const Reference<XPane>& rxPane)
{
diff --git a/sdext/source/presenter/PresenterHelpView.cxx b/sdext/source/presenter/PresenterHelpView.cxx
index 7975b05da11a..782f820cc4a7 100644
--- a/sdext/source/presenter/PresenterHelpView.cxx
+++ b/sdext/source/presenter/PresenterHelpView.cxx
@@ -462,7 +462,7 @@ sal_Bool SAL_CALL PresenterHelpView::isAnchorOnly (void)
return false;
}
-//-----------------------------------------------------------------------------
+
void PresenterHelpView::ProvideCanvas (void)
{
diff --git a/sdext/source/presenter/PresenterNotesView.cxx b/sdext/source/presenter/PresenterNotesView.cxx
index 28d93889d22d..a1d9af939d99 100644
--- a/sdext/source/presenter/PresenterNotesView.cxx
+++ b/sdext/source/presenter/PresenterNotesView.cxx
@@ -420,7 +420,7 @@ void SAL_CALL PresenterNotesView::keyReleased (const awt::KeyEvent& rEvent)
(void)rEvent;
}
-//-----------------------------------------------------------------------------
+
void PresenterNotesView::Layout (void)
{
diff --git a/sdext/source/presenter/PresenterPane.cxx b/sdext/source/presenter/PresenterPane.cxx
index 458ea7d6c38f..fab3c5415654 100644
--- a/sdext/source/presenter/PresenterPane.cxx
+++ b/sdext/source/presenter/PresenterPane.cxx
@@ -139,7 +139,7 @@ void SAL_CALL PresenterPane::windowPaint (const awt::PaintEvent& rEvent)
PaintBorder(rEvent.UpdateRect);
}
-//-----------------------------------------------------------------------------
+
void PresenterPane::CreateCanvases (
const Reference<awt::XWindow>& rxParentWindow,
diff --git a/sdext/source/presenter/PresenterPaneBase.cxx b/sdext/source/presenter/PresenterPaneBase.cxx
index 2ded1b0e3c31..87a6831b2463 100644
--- a/sdext/source/presenter/PresenterPaneBase.cxx
+++ b/sdext/source/presenter/PresenterPaneBase.cxx
@@ -314,7 +314,7 @@ void SAL_CALL PresenterPaneBase::disposing (const lang::EventObject& rEvent)
}
}
-//-----------------------------------------------------------------------------
+
void PresenterPaneBase::CreateWindows (
const Reference<awt::XWindow>& rxParentWindow,
diff --git a/sdext/source/presenter/PresenterPaneBorderManager.cxx b/sdext/source/presenter/PresenterPaneBorderManager.cxx
index f02c4b0e1c7a..48f9e805a71b 100644
--- a/sdext/source/presenter/PresenterPaneBorderManager.cxx
+++ b/sdext/source/presenter/PresenterPaneBorderManager.cxx
@@ -478,7 +478,7 @@ void SAL_CALL PresenterPaneBorderManager::disposing (const lang::EventObject& rE
}
}
-//-----------------------------------------------------------------------------
+
void PresenterPaneBorderManager::CaptureMouse (const Reference<awt::XWindow>& rxWindow)
{
diff --git a/sdext/source/presenter/PresenterPaneBorderPainter.cxx b/sdext/source/presenter/PresenterPaneBorderPainter.cxx
index 9b03dc3a576e..f72384ac792f 100644
--- a/sdext/source/presenter/PresenterPaneBorderPainter.cxx
+++ b/sdext/source/presenter/PresenterPaneBorderPainter.cxx
@@ -292,7 +292,7 @@ awt::Point SAL_CALL PresenterPaneBorderPainter::getCalloutOffset (
return awt::Point(0,0);
}
-//-----------------------------------------------------------------------------
+
bool PresenterPaneBorderPainter::ProvideTheme (const Reference<rendering::XCanvas>& rxCanvas)
{
diff --git a/sdext/source/presenter/PresenterPaneFactory.cxx b/sdext/source/presenter/PresenterPaneFactory.cxx
index 99615eb55d4c..c7799ca2d8e4 100644
--- a/sdext/source/presenter/PresenterPaneFactory.cxx
+++ b/sdext/source/presenter/PresenterPaneFactory.cxx
@@ -216,7 +216,7 @@ void SAL_CALL PresenterPaneFactory::releaseResource (const Reference<XResource>&
}
}
-//-----------------------------------------------------------------------------
+
Reference<XResource> PresenterPaneFactory::CreatePane (
const Reference<XResourceId>& rxPaneId,
diff --git a/sdext/source/presenter/PresenterProtocolHandler.cxx b/sdext/source/presenter/PresenterProtocolHandler.cxx
index 60068de88daf..66720aea00a7 100644
--- a/sdext/source/presenter/PresenterProtocolHandler.cxx
+++ b/sdext/source/presenter/PresenterProtocolHandler.cxx
@@ -321,7 +321,7 @@ Sequence<Reference<frame::XDispatch> > SAL_CALL PresenterProtocolHandler::queryD
return Sequence<Reference<frame::XDispatch> >();
}
-//-----------------------------------------------------------------------------
+
void PresenterProtocolHandler::ThrowIfDisposed (void) const
throw (::com::sun::star::lang::DisposedException)
diff --git a/sdext/source/presenter/PresenterScreen.cxx b/sdext/source/presenter/PresenterScreen.cxx
index bd80b60a5aaa..bf663c05766b 100644
--- a/sdext/source/presenter/PresenterScreen.cxx
+++ b/sdext/source/presenter/PresenterScreen.cxx
@@ -326,7 +326,7 @@ void SAL_CALL PresenterScreen::disposing (const lang::EventObject& /*rEvent*/)
RequestShutdownPresenterScreen();
}
-//-----------------------------------------------------------------------------
+
void PresenterScreen::InitializePresenterScreen (void)
{
diff --git a/sdext/source/presenter/PresenterScrollBar.cxx b/sdext/source/presenter/PresenterScrollBar.cxx
index 44cb4e6f4c9b..9f88364ec170 100644
--- a/sdext/source/presenter/PresenterScrollBar.cxx
+++ b/sdext/source/presenter/PresenterScrollBar.cxx
@@ -474,7 +474,7 @@ void SAL_CALL PresenterScrollBar::disposing (const css::lang::EventObject& rEven
mxWindow = NULL;
}
-//-----------------------------------------------------------------------------
+
geometry::RealRectangle2D PresenterScrollBar::GetRectangle (const Area eArea) const
{
diff --git a/sdext/source/presenter/PresenterSlidePreview.cxx b/sdext/source/presenter/PresenterSlidePreview.cxx
index 3055afeccfc0..55c040d41ae8 100644
--- a/sdext/source/presenter/PresenterSlidePreview.cxx
+++ b/sdext/source/presenter/PresenterSlidePreview.cxx
@@ -217,7 +217,7 @@ Reference<drawing::XDrawPage> SAL_CALL PresenterSlidePreview::getCurrentPage (vo
return NULL;
}
-//-----------------------------------------------------------------------------
+
void PresenterSlidePreview::SetSlide (const Reference<drawing::XDrawPage>& rxPage)
{
diff --git a/sdext/source/presenter/PresenterSlideShowView.cxx b/sdext/source/presenter/PresenterSlideShowView.cxx
index 19aa959dfadd..a230cb82381a 100644
--- a/sdext/source/presenter/PresenterSlideShowView.cxx
+++ b/sdext/source/presenter/PresenterSlideShowView.cxx
@@ -687,7 +687,7 @@ void PresenterSlideShowView::DeactivatePresenterView (void)
}
}
-//-----------------------------------------------------------------------------
+
void PresenterSlideShowView::PaintOuterWindow (const awt::Rectangle& rRepaintBox)
{
diff --git a/sdext/source/presenter/PresenterSlideSorter.cxx b/sdext/source/presenter/PresenterSlideSorter.cxx
index 19c07652ee9f..a330949aeb9b 100644
--- a/sdext/source/presenter/PresenterSlideSorter.cxx
+++ b/sdext/source/presenter/PresenterSlideSorter.cxx
@@ -681,7 +681,7 @@ Reference<drawing::XDrawPage> SAL_CALL PresenterSlideSorter::getCurrentPage (voi
return NULL;
}
-//-----------------------------------------------------------------------------
+
void PresenterSlideSorter::UpdateLayout (void)
{
diff --git a/sdext/source/presenter/PresenterSpritePane.cxx b/sdext/source/presenter/PresenterSpritePane.cxx
index b1bd9045f332..099495bf0a83 100644
--- a/sdext/source/presenter/PresenterSpritePane.cxx
+++ b/sdext/source/presenter/PresenterSpritePane.cxx
@@ -146,7 +146,7 @@ void SAL_CALL PresenterSpritePane::windowPaint (const awt::PaintEvent& rEvent)
*/
}
-//-----------------------------------------------------------------------------
+
::boost::shared_ptr<PresenterSprite> PresenterSpritePane::GetSprite (void)
{
diff --git a/sdext/source/presenter/PresenterToolBar.cxx b/sdext/source/presenter/PresenterToolBar.cxx
index 8396f26dee3e..bf3fedae9e3b 100644
--- a/sdext/source/presenter/PresenterToolBar.cxx
+++ b/sdext/source/presenter/PresenterToolBar.cxx
@@ -613,7 +613,7 @@ Reference<drawing::XDrawPage> SAL_CALL PresenterToolBar::getCurrentPage (void)
return mxCurrentSlide;
}
-//-----------------------------------------------------------------------------
+
void PresenterToolBar::CreateControls (
const OUString& rsConfigurationPath)
diff --git a/sdext/source/presenter/PresenterViewFactory.cxx b/sdext/source/presenter/PresenterViewFactory.cxx
index f3315ba79cbf..37516d060290 100644
--- a/sdext/source/presenter/PresenterViewFactory.cxx
+++ b/sdext/source/presenter/PresenterViewFactory.cxx
@@ -287,7 +287,7 @@ void SAL_CALL PresenterViewFactory::releaseResource (const Reference<XResource>&
}
}
-//-----------------------------------------------------------------------------
+
Reference<XResource> PresenterViewFactory::GetViewFromCache(
const Reference<XResourceId>& rxViewId,
diff --git a/sdext/source/presenter/PresenterWindowManager.cxx b/sdext/source/presenter/PresenterWindowManager.cxx
index f6b5b5496b5e..ef578424e55b 100644
--- a/sdext/source/presenter/PresenterWindowManager.cxx
+++ b/sdext/source/presenter/PresenterWindowManager.cxx
@@ -370,7 +370,7 @@ void SAL_CALL PresenterWindowManager::disposing (const lang::EventObject& rEvent
}
}
-//-----------------------------------------------------------------------------
+
bool PresenterWindowManager::PaintChildren (const awt::PaintEvent& rEvent) const
{