New loplugin:externvar: svx

Change-Id: Ia6d7c52389bbc957190bc59dadb62b1840befe73
This commit is contained in:
Stephan Bergmann
2017-01-09 15:40:30 +01:00
parent 28a42c1b72
commit f55079f4ef
3 changed files with 4 additions and 4 deletions

View File

@@ -92,7 +92,7 @@
// wird fuer Invalidate verwendet -> mitpflegen
// aufsteigend sortieren !!!!!!
sal_uInt16 ControllerSlotMap[] = // slots des Controllers
sal_uInt16 const ControllerSlotMap[] = // slots des Controllers
{
SID_FM_CONFIG,
SID_FM_PUSHBUTTON,

View File

@@ -164,7 +164,7 @@ struct PropertySetInfo
typedef std::map<Reference< XPropertySet >, PropertySetInfo> PropertySetInfoCache;
OUString static_STR_UNDO_PROPERTY;
static OUString static_STR_UNDO_PROPERTY;
FmXUndoEnvironment::FmXUndoEnvironment(FmFormModel& _rModel)

View File

@@ -314,8 +314,8 @@ double ExtrusionDepthDialog::getDepth() const
return (double)( m_pMtrDepth->GetValue( FUNIT_100TH_MM ) ) / 100.0;
}
double aDepthListInch[] = { 0, 1270,2540,5080,10160 };
double aDepthListMM[] = { 0, 1000, 2500, 5000, 10000 };
double const aDepthListInch[] = { 0, 1270,2540,5080,10160 };
double const aDepthListMM[] = { 0, 1000, 2500, 5000, 10000 };
ExtrusionDepthWindow::ExtrusionDepthWindow(
svt::ToolboxController& rController,