Kaydet (Commit) ea3edee4 authored tarafından Caolán McNamara's avatar Caolán McNamara

callcatcher: update unused code

ResId loaders begining to melt away

Change-Id: Ied10d95f6561f24b2305d202847b7e7c39eb63c3
üst 1399a51f
...@@ -113,60 +113,6 @@ TrendlineResources::TrendlineResources( Window * pParent, const SfxItemSet& rInA ...@@ -113,60 +113,6 @@ TrendlineResources::TrendlineResources( Window * pParent, const SfxItemSet& rInA
TrendlineResources::~TrendlineResources() TrendlineResources::~TrendlineResources()
{} {}
long TrendlineResources::adjustControlSizes()
{
// calculate right edge
std::vector< long > aControlRightEdges;
aControlRightEdges.push_back( lcl_getRightEdge( m_aRBLinear ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aRBLogarithmic ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aRBExponential ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aRBPower ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aRBPolynomial ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aRBMovingAverage ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aNF_Degree ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aNF_Period ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aNF_ExtrapolateForward ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aNF_ExtrapolateBackward ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aNF_InterceptValue ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aCB_SetIntercept ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aCBShowEquation ));
aControlRightEdges.push_back( lcl_getRightEdge( m_aCBShowCorrelationCoeff ));
lcl_AdjustControlSize( m_aRBLinear );
lcl_AdjustControlSize( m_aRBLogarithmic );
lcl_AdjustControlSize( m_aRBExponential );
lcl_AdjustControlSize( m_aRBPower );
lcl_AdjustControlSize( m_aRBPolynomial );
lcl_AdjustControlSize( m_aRBMovingAverage );
lcl_AdjustControlSize( m_aNF_Degree );
lcl_AdjustControlSize( m_aNF_Period );
lcl_AdjustControlSize( m_aNF_ExtrapolateForward );
lcl_AdjustControlSize( m_aNF_ExtrapolateBackward );
lcl_AdjustControlSize( m_aNF_InterceptValue );
lcl_AdjustControlSize( m_aCB_SetIntercept );
lcl_AdjustControlSize( m_aCBShowEquation );
lcl_AdjustControlSize( m_aCBShowCorrelationCoeff );
// Note: FixedLine has no CalcMinimumSize, workaround: use a FixedText
FixedText aDummyTextCtrl( m_aFLType.GetParent());
aDummyTextCtrl.SetText( m_aFLType.GetText());
aControlRightEdges.push_back( lcl_getRightEdge( aDummyTextCtrl ));
aDummyTextCtrl.SetText( m_aFLEquation.GetText());
aControlRightEdges.push_back( lcl_getRightEdge( aDummyTextCtrl ));
long nRightEdgeOfControls = *(::std::max_element( aControlRightEdges.begin(), aControlRightEdges.end()));
// leave some more space after the longest text
nRightEdgeOfControls += m_aFLType.LogicToPixel( Size( 6, 0 ), MapMode( MAP_APPFONT )).getWidth();
lcl_AdjustControlSize( m_aFLType, nRightEdgeOfControls );
lcl_AdjustControlSize( m_aFLEquation, nRightEdgeOfControls );
return nRightEdgeOfControls;
}
IMPL_LINK( TrendlineResources, SelectTrendLine, RadioButton *, pRadioButton ) IMPL_LINK( TrendlineResources, SelectTrendLine, RadioButton *, pRadioButton )
{ {
......
...@@ -40,8 +40,6 @@ public: ...@@ -40,8 +40,6 @@ public:
void FillValueSets(); void FillValueSets();
long adjustControlSizes();
private: private:
FixedLine m_aFLType; FixedLine m_aFLType;
......
...@@ -233,17 +233,6 @@ void SchOptionTabPage::Init( bool bProvidesSecondaryYAxis, bool bProvidesOverlap ...@@ -233,17 +233,6 @@ void SchOptionTabPage::Init( bool bProvidesSecondaryYAxis, bool bProvidesOverlap
AdaptControlPositionsAndVisibility(); AdaptControlPositionsAndVisibility();
} }
void lcl_offsetControl(Control& rCtrl, long nXOffset, long nYOffset )
{
Point aPos = rCtrl.GetPosPixel();
rCtrl.SetPosPixel( Point(aPos.getX() + nXOffset, aPos.getY() + nYOffset) );
}
void lcl_optimzeRadioButtonSize( RadioButton& rCtrl )
{
rCtrl.SetSizePixel( rCtrl.CalcMinimumSize() );
}
void SchOptionTabPage::AdaptControlPositionsAndVisibility() void SchOptionTabPage::AdaptControlPositionsAndVisibility()
{ {
m_pGrpAxis->Show(m_bProvidesSecondaryYAxis); m_pGrpAxis->Show(m_bProvidesSecondaryYAxis);
......
...@@ -428,7 +428,6 @@ protected: ...@@ -428,7 +428,6 @@ protected:
public: public:
FontNameBox( Window* pParent, FontNameBox( Window* pParent,
WinBits nWinStyle = WB_SORT ); WinBits nWinStyle = WB_SORT );
FontNameBox( Window* pParent, const ResId& rResId );
virtual ~FontNameBox(); virtual ~FontNameBox();
virtual void UserDraw( const UserDrawEvent& rUDEvt ); virtual void UserDraw( const UserDrawEvent& rUDEvt );
......
...@@ -28,7 +28,6 @@ class SVX_DLLPUBLIC SidebarDialControl : public svx::DialControl ...@@ -28,7 +28,6 @@ class SVX_DLLPUBLIC SidebarDialControl : public svx::DialControl
{ {
public: public:
SidebarDialControl (Window* pParent, WinBits nBits = 0); SidebarDialControl (Window* pParent, WinBits nBits = 0);
SidebarDialControl (Window* pParent, const ResId& rResId);
virtual ~SidebarDialControl (void); virtual ~SidebarDialControl (void);
virtual Size GetOptimalSize() const; virtual Size GetOptimalSize() const;
......
...@@ -744,7 +744,6 @@ class VCL_DLLPUBLIC MetricBox : public ComboBox, public MetricFormatter ...@@ -744,7 +744,6 @@ class VCL_DLLPUBLIC MetricBox : public ComboBox, public MetricFormatter
{ {
public: public:
explicit MetricBox( Window* pParent, WinBits nWinStyle ); explicit MetricBox( Window* pParent, WinBits nWinStyle );
explicit MetricBox( Window* pParent, const ResId& );
virtual ~MetricBox(); virtual ~MetricBox();
virtual long PreNotify( NotifyEvent& rNEvt ); virtual long PreNotify( NotifyEvent& rNEvt );
......
...@@ -35,9 +35,7 @@ ...@@ -35,9 +35,7 @@
#include "globstr.hrc" #include "globstr.hrc"
#include "filter.hrc" #include "filter.hrc"
#define _FILTDLG_CXX
#include "filtdlg.hxx" #include "filtdlg.hxx"
#undef _FILTDLG_CXX
#include <vcl/msgbox.hxx> #include <vcl/msgbox.hxx>
#include <limits> #include <limits>
...@@ -232,7 +230,7 @@ void ScFilterDlg::Init( const SfxItemSet& rArgSet ) ...@@ -232,7 +230,7 @@ void ScFilterDlg::Init( const SfxItemSet& rArgSet )
maConnLbArr.push_back(pLbConnect4); maConnLbArr.push_back(pLbConnect4);
// Option initialization: // Option initialization:
pOptionsMgr = new ScNewFilterOptionsMgr( pOptionsMgr = new ScFilterOptionsMgr(
pViewData, pViewData,
theQueryData, theQueryData,
pBtnCase, pBtnCase,
...@@ -738,24 +736,6 @@ IMPL_LINK( ScFilterDlg, EndDlgHdl, Button*, pBtn ) ...@@ -738,24 +736,6 @@ IMPL_LINK( ScFilterDlg, EndDlgHdl, Button*, pBtn )
return 0; return 0;
} }
//----------------------------------------------------------------------------
IMPL_LINK_NOARG(ScFilterDlg, MoreClickHdl)
{
if ( pExpander->get_expanded() )
pTimer->Start();
else
{
pTimer->Stop();
bRefInputMode = false;
//@BugID 54702 Enable/disable only in Basic class
//SFX_APPWINDOW->Disable(FALSE); //! general method in ScAnyRefDlg
}
return 0;
}
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
IMPL_LINK( ScFilterDlg, TimeOutHdl, Timer*, _pTimer ) IMPL_LINK( ScFilterDlg, TimeOutHdl, Timer*, _pTimer )
......
This diff is collapsed.
...@@ -33,9 +33,7 @@ ...@@ -33,9 +33,7 @@
#include "globstr.hrc" #include "globstr.hrc"
#include "filter.hrc" #include "filter.hrc"
#define _SFILTDLG_CXX
#include "filtdlg.hxx" #include "filtdlg.hxx"
#undef _SFILTDLG_CXX
#include <vcl/msgbox.hxx> #include <vcl/msgbox.hxx>
// DEFINE -------------------------------------------------------------------- // DEFINE --------------------------------------------------------------------
...@@ -180,7 +178,7 @@ void ScSpecialFilterDlg::Init( const SfxItemSet& rArgSet ) ...@@ -180,7 +178,7 @@ void ScSpecialFilterDlg::Init( const SfxItemSet& rArgSet )
// Optionen initialisieren lassen: // Optionen initialisieren lassen:
pOptionsMgr = new ScNewFilterOptionsMgr( pOptionsMgr = new ScFilterOptionsMgr(
pViewData, pViewData,
theQueryData, theQueryData,
pBtnCase, pBtnCase,
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ScNewFilterOptionsMgr; class ScFilterOptionsMgr;
class ScViewData; class ScViewData;
class ScDocument; class ScDocument;
class ScQueryItem; class ScQueryItem;
...@@ -116,7 +116,7 @@ private: ...@@ -116,7 +116,7 @@ private:
const OUString aStrRow; const OUString aStrRow;
const OUString aStrColumn; const OUString aStrColumn;
ScNewFilterOptionsMgr* pOptionsMgr; ScFilterOptionsMgr* pOptionsMgr;
const sal_uInt16 nWhichQuery; const sal_uInt16 nWhichQuery;
ScQueryParam theQueryData; ScQueryParam theQueryData;
...@@ -139,7 +139,6 @@ private: ...@@ -139,7 +139,6 @@ private:
// Hack: RefInput control // Hack: RefInput control
Timer* pTimer; Timer* pTimer;
#ifdef _FILTDLG_CXX
private: private:
void Init ( const SfxItemSet& rArgSet ); void Init ( const SfxItemSet& rArgSet );
void FillFieldLists (); void FillFieldLists ();
...@@ -155,12 +154,10 @@ private: ...@@ -155,12 +154,10 @@ private:
DECL_LINK( ValModifyHdl, ComboBox* ); DECL_LINK( ValModifyHdl, ComboBox* );
DECL_LINK( CheckBoxHdl, CheckBox* ); DECL_LINK( CheckBoxHdl, CheckBox* );
DECL_LINK( EndDlgHdl, Button* ); DECL_LINK( EndDlgHdl, Button* );
DECL_LINK( MoreClickHdl, void* );
DECL_LINK( ScrollHdl, void* ); DECL_LINK( ScrollHdl, void* );
// Hack: RefInput control // Hack: RefInput control
DECL_LINK( TimeOutHdl, Timer* ); DECL_LINK( TimeOutHdl, Timer* );
#endif
}; };
class ScSpecialFilterDlg : public ScAnyRefDlg class ScSpecialFilterDlg : public ScAnyRefDlg
...@@ -201,7 +198,7 @@ private: ...@@ -201,7 +198,7 @@ private:
CancelButton* pBtnCancel; CancelButton* pBtnCancel;
HelpButton* pBtnHelp; HelpButton* pBtnHelp;
ScNewFilterOptionsMgr* pOptionsMgr; ScFilterOptionsMgr* pOptionsMgr;
const sal_uInt16 nWhichQuery; const sal_uInt16 nWhichQuery;
const ScQueryParam theQueryData; const ScQueryParam theQueryData;
...@@ -215,7 +212,6 @@ private: ...@@ -215,7 +212,6 @@ private:
// Hack: RefInput control // Hack: RefInput control
Timer* pTimer; Timer* pTimer;
#ifdef _SFILTDLG_CXX
private: private:
void Init( const SfxItemSet& rArgSet ); void Init( const SfxItemSet& rArgSet );
ScQueryItem* GetOutputItem( const ScQueryParam& rParam, ScQueryItem* GetOutputItem( const ScQueryParam& rParam,
...@@ -229,7 +225,6 @@ private: ...@@ -229,7 +225,6 @@ private:
// Hack: RefInput control // Hack: RefInput control
DECL_LINK( TimeOutHdl, Timer* ); DECL_LINK( TimeOutHdl, Timer* );
#endif
}; };
......
...@@ -17,89 +17,6 @@ ...@@ -17,89 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#ifndef SC_FOPTMGR_HXX
#define SC_FOPTMGR_HXX
#include <vcl/fixed.hxx>
#include <vcl/edit.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/button.hxx>
//----------------------------------------------------------------------------
class FixedInfo;
namespace formula
{
class RefButton;
}
class MoreButton;
struct ScQueryParam;
class ScDocument;
class ScViewData;
//----------------------------------------------------------------------------
class ScFilterOptionsMgr
{
public:
ScFilterOptionsMgr( ScViewData* ptrViewData,
const ScQueryParam& refQueryData,
MoreButton& refBtnMore,
CheckBox& refBtnCase,
CheckBox& refBtnRegExp,
CheckBox& refBtnHeader,
CheckBox& refBtnUnique,
CheckBox& refBtnCopyResult,
CheckBox& refBtnDestPers,
ListBox& refLbCopyArea,
Edit& refEdCopyArea,
formula::RefButton& refRbCopyArea,
FixedText& refFtDbAreaLabel,
FixedInfo& refFtDbArea,
FixedLine& refFlOptions,
const String& refStrUndefined );
~ScFilterOptionsMgr();
sal_Bool VerifyPosStr ( const String& rPosStr ) const;
private:
ScViewData* pViewData;
ScDocument* pDoc;
MoreButton& rBtnMore;
CheckBox& rBtnCase;
CheckBox& rBtnRegExp;
CheckBox& rBtnHeader;
CheckBox& rBtnUnique;
CheckBox& rBtnCopyResult;
CheckBox& rBtnDestPers;
ListBox& rLbCopyPos;
Edit& rEdCopyPos;
formula::RefButton& rRbCopyPos;
FixedText& rFtDbAreaLabel;
FixedInfo& rFtDbArea;
FixedLine& rFlOptions;
const String& rStrUndefined;
const ScQueryParam& rQueryData;
#ifdef _FOPTMGR_CXX
private:
void Init();
// Handler:
DECL_LINK( EdPosModifyHdl, Edit* );
DECL_LINK( LbPosSelHdl, ListBox* );
DECL_LINK( BtnCopyResultHdl, CheckBox* );
#endif
};
#endif // SC_FOPTMGR_HXX
#ifndef SC_NEWFOPTMGR_HXX #ifndef SC_NEWFOPTMGR_HXX
#define SC_NEWFOPTMGR_HXX #define SC_NEWFOPTMGR_HXX
...@@ -107,7 +24,6 @@ private: ...@@ -107,7 +24,6 @@ private:
#include <vcl/edit.hxx> #include <vcl/edit.hxx>
#include <vcl/lstbox.hxx> #include <vcl/lstbox.hxx>
#include <vcl/button.hxx> #include <vcl/button.hxx>
//#include <vcl/layout.hxx>
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
...@@ -121,24 +37,24 @@ class ScViewData; ...@@ -121,24 +37,24 @@ class ScViewData;
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
class ScNewFilterOptionsMgr class ScFilterOptionsMgr
{ {
public: public:
ScNewFilterOptionsMgr( ScViewData* ptrViewData, ScFilterOptionsMgr( ScViewData* ptrViewData,
const ScQueryParam& refQueryData, const ScQueryParam& refQueryData,
CheckBox* refBtnCase, CheckBox* refBtnCase,
CheckBox* refBtnRegExp, CheckBox* refBtnRegExp,
CheckBox* refBtnHeader, CheckBox* refBtnHeader,
CheckBox* refBtnUnique, CheckBox* refBtnUnique,
CheckBox* refBtnCopyResult, CheckBox* refBtnCopyResult,
CheckBox* refBtnDestPers, CheckBox* refBtnDestPers,
ListBox* refLbCopyArea, ListBox* refLbCopyArea,
Edit* refEdCopyArea, Edit* refEdCopyArea,
formula::RefButton* refRbCopyArea, formula::RefButton* refRbCopyArea,
FixedText* refFtDbAreaLabel, FixedText* refFtDbAreaLabel,
FixedText* refFtDbArea, FixedText* refFtDbArea,
const String& refStrUndefined ); const String& refStrUndefined );
~ScNewFilterOptionsMgr(); ~ScFilterOptionsMgr();
sal_Bool VerifyPosStr ( const String& rPosStr ) const; sal_Bool VerifyPosStr ( const String& rPosStr ) const;
private: private:
...@@ -161,7 +77,6 @@ private: ...@@ -161,7 +77,6 @@ private:
const ScQueryParam& rQueryData; const ScQueryParam& rQueryData;
#ifdef _NEWFOPTMGR_CXX
private: private:
void Init(); void Init();
...@@ -169,11 +84,9 @@ private: ...@@ -169,11 +84,9 @@ private:
DECL_LINK( EdAreaModifyHdl, Edit* ); DECL_LINK( EdAreaModifyHdl, Edit* );
DECL_LINK( LbAreaSelHdl, ListBox* ); DECL_LINK( LbAreaSelHdl, ListBox* );
DECL_LINK( BtnCopyResultHdl, CheckBox* ); DECL_LINK( BtnCopyResultHdl, CheckBox* );
#endif
}; };
#endif // SC_NEWFOPTMGR_HXX #endif // SC_NEWFOPTMGR_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -1048,14 +1048,6 @@ FontNameBox::FontNameBox( Window* pParent, WinBits nWinStyle ) : ...@@ -1048,14 +1048,6 @@ FontNameBox::FontNameBox( Window* pParent, WinBits nWinStyle ) :
// ------------------------------------------------------------------- // -------------------------------------------------------------------
FontNameBox::FontNameBox( Window* pParent, const ResId& rResId ) :
ComboBox( pParent, rResId )
{
mpFontList = NULL;
mbWYSIWYG = sal_False;
InitFontMRUEntriesFile();
}
extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeFontNameBox(Window *pParent, VclBuilder::stringmap &rMap) extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeFontNameBox(Window *pParent, VclBuilder::stringmap &rMap)
{ {
bool bDropdown = VclBuilder::extractDropdown(rMap); bool bDropdown = VclBuilder::extractDropdown(rMap);
......
...@@ -34,14 +34,6 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSidebarDialControl(Window * ...@@ -34,14 +34,6 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSidebarDialControl(Window *
return new SidebarDialControl(pParent, WB_TABSTOP); return new SidebarDialControl(pParent, WB_TABSTOP);
} }
SidebarDialControl::SidebarDialControl (
Window* pParent,
const ResId& rResId)
: svx::DialControl(pParent, rResId)
{
Init(GetOutputSizePixel());
}
SidebarDialControl::~SidebarDialControl (void) SidebarDialControl::~SidebarDialControl (void)
{ {
} }
......
...@@ -49,7 +49,7 @@ ScDocument::GetFormulaTokens(ScAddress const&) const ...@@ -49,7 +49,7 @@ ScDocument::GetFormulaTokens(ScAddress const&) const
ScDocument::GetStringCell(ScAddress const&) const ScDocument::GetStringCell(ScAddress const&) const
ScDocument::IsEmptyData(short, short) const ScDocument::IsEmptyData(short, short) const
ScExtIButton::GetSelected() const ScExtIButton::GetSelected() const
ScFormulaCell::GetResultDouble() const ScFilterDlg::LinkStubMoreClickHdl(void*, void*)
ScFormulaCell::HasColRowName() const ScFormulaCell::HasColRowName() const
ScFormulaCell::IsSharedInvariant() const ScFormulaCell::IsSharedInvariant() const
ScFormulaCell::SetResultToken(formula::FormulaToken const*) ScFormulaCell::SetResultToken(formula::FormulaToken const*)
...@@ -120,7 +120,6 @@ basegfx::snapToNearestMultiple(double, double) ...@@ -120,7 +120,6 @@ basegfx::snapToNearestMultiple(double, double)
basegfx::snapToRange(double, double, double) basegfx::snapToRange(double, double, double)
basegfx::unotools::homMatrixFromMatrix(basegfx::B2DHomMatrix&, com::sun::star::geometry::Matrix2D const&) basegfx::unotools::homMatrixFromMatrix(basegfx::B2DHomMatrix&, com::sun::star::geometry::Matrix2D const&)
canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&) canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&)
chart::TrendlineResources::adjustControlSizes()
comphelper::ComponentContext::ComponentContext(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&) comphelper::ComponentContext::ComponentContext(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
comphelper::ComponentContext::createComponentWithArguments(rtl::OUString const&, com::sun::star::uno::Sequence<com::sun::star::uno::Any> const&) const comphelper::ComponentContext::createComponentWithArguments(rtl::OUString const&, com::sun::star::uno::Sequence<com::sun::star::uno::Any> const&) const
comphelper::ComponentContext::getLegacyServiceFactory() const comphelper::ComponentContext::getLegacyServiceFactory() const
...@@ -130,6 +129,8 @@ comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<co ...@@ -130,6 +129,8 @@ comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<co
comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const
comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const
connectivity::file::OStatement_Base::reset() connectivity::file::OStatement_Base::reset()
connectivity::firebird::OPreparedStatement::checkParameterIndex(int)
connectivity::firebird::release(int&, cppu::OBroadcastHelperVar<cppu::OMultiTypeInterfaceContainerHelper, com::sun::star::uno::Type>&, com::sun::star::uno::Reference<com::sun::star::uno::XInterface>&, com::sun::star::lang::XComponent*)
connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, unsigned char) connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, unsigned char)
connectivity::sdbcx::OGroup::OGroup(unsigned char) connectivity::sdbcx::OGroup::OGroup(unsigned char)
dbtools::DBTypeConversion::getMsFromTime(com::sun::star::util::Time const&) dbtools::DBTypeConversion::getMsFromTime(com::sun::star::util::Time const&)
...@@ -152,6 +153,8 @@ oox::xls::SheetDataBuffer::writeXfIdRangeListProperties(int, int, oox::xls::ApiC ...@@ -152,6 +153,8 @@ oox::xls::SheetDataBuffer::writeXfIdRangeListProperties(int, int, oox::xls::ApiC
oox::xls::StylesBuffer::writeStyleXfToPropertySet(oox::PropertySet&, int) const oox::xls::StylesBuffer::writeStyleXfToPropertySet(oox::PropertySet&, int) const
oox::xls::WorksheetGlobals::getColumns(oox::ValueRange const&) const oox::xls::WorksheetGlobals::getColumns(oox::ValueRange const&) const
oox::xls::WorksheetGlobals::getRows(oox::ValueRange const&) const oox::xls::WorksheetGlobals::getRows(oox::ValueRange const&) const
sax::Converter::convertDateTZ(rtl::OUStringBuffer&, com::sun::star::util::DateWithTimezone const&)
sax::Converter::convertDateTimeTZ(rtl::OUStringBuffer&, com::sun::star::util::DateTimeWithTimezone const&)
sc::CellTextAttr::CellTextAttr(unsigned short, unsigned char) sc::CellTextAttr::CellTextAttr(unsigned short, unsigned char)
sc::sidebar::CellLineStyleValueSet::GetSelItem() sc::sidebar::CellLineStyleValueSet::GetSelItem()
sc::sidebar::CellLineStyleValueSet::SetCusEnable(bool) sc::sidebar::CellLineStyleValueSet::SetCusEnable(bool)
...@@ -176,6 +179,9 @@ sdr::table::SdrTableObj::getRowCount() const ...@@ -176,6 +179,9 @@ sdr::table::SdrTableObj::getRowCount() const
sfx2::sidebar::AsynchronousCall::RequestCall(boost::function<void ()> const&) sfx2::sidebar::AsynchronousCall::RequestCall(boost::function<void ()> const&)
sfx2::sidebar::Context::EvaluateMatch(std::__debug::vector<sfx2::sidebar::Context, std::allocator<sfx2::sidebar::Context> > const&) const sfx2::sidebar::Context::EvaluateMatch(std::__debug::vector<sfx2::sidebar::Context, std::allocator<sfx2::sidebar::Context> > const&) const
sfx2::sidebar::ContextList::IsEmpty() sfx2::sidebar::ContextList::IsEmpty()
sfx2::sidebar::ControlFactory::CreateToolBox(Window*, ResId const&)
sfx2::sidebar::ControlFactory::CreateToolBox(Window*, ResId const&, com::sun::star::uno::Reference<com::sun::star::frame::XFrame> const&)
sfx2::sidebar::ControlFactory::CreateToolBoxBackground(Window*, bool)
sfx2::sidebar::Deck::GetIconURL(bool) const sfx2::sidebar::Deck::GetIconURL(bool) const
sfx2::sidebar::Deck::PrintWindowTree(std::__debug::vector<sfx2::sidebar::Panel*, std::allocator<sfx2::sidebar::Panel*> > const&) sfx2::sidebar::Deck::PrintWindowTree(std::__debug::vector<sfx2::sidebar::Panel*, std::allocator<sfx2::sidebar::Panel*> > const&)
sfx2::sidebar::EnumContext::EvaluateMatch(std::__debug::vector<sfx2::sidebar::EnumContext, std::allocator<sfx2::sidebar::EnumContext> > const&) const sfx2::sidebar::EnumContext::EvaluateMatch(std::__debug::vector<sfx2::sidebar::EnumContext, std::allocator<sfx2::sidebar::EnumContext> > const&) const
...@@ -217,3 +223,4 @@ unoidl::UnoidlProvider::getConstant(unsigned int) const ...@@ -217,3 +223,4 @@ unoidl::UnoidlProvider::getConstant(unsigned int) const
utl::ConfigItem::getUniqueSetElementName(rtl::OUString const&, rtl::OUString&) utl::ConfigItem::getUniqueSetElementName(rtl::OUString const&, rtl::OUString&)
utl::toISO8601(com::sun::star::util::Time const&) utl::toISO8601(com::sun::star::util::Time const&)
vclmain::createApplication() vclmain::createApplication()
writerfilter::ooxml::OOXMLFastContextHandler::mark(unsigned int const&, boost::shared_ptr<writerfilter::ooxml::OOXMLValue>)
...@@ -1940,21 +1940,6 @@ MetricBox::MetricBox( Window* pParent, WinBits nWinStyle ) : ...@@ -1940,21 +1940,6 @@ MetricBox::MetricBox( Window* pParent, WinBits nWinStyle ) :
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
MetricBox::MetricBox( Window* pParent, const ResId& rResId ) :
ComboBox( WINDOW_METRICBOX )
{
rResId.SetRT( RSC_METRICBOX );
WinBits nStyle = ImplInitRes( rResId );
ComboBox::ImplInit( pParent, nStyle );
SetField( this );
Reformat();
ComboBox::ImplLoadRes( rResId );
MetricFormatter::ImplLoadRes( ResId( (RSHEADER_TYPE *)GetClassRes(), *rResId.GetResMgr() ) );
if ( !(nStyle & WB_HIDE ) )
Show();
}
Size MetricBox::CalcMinimumSize() const Size MetricBox::CalcMinimumSize() const
{ {
Size aRet(calcMinimumSize(*this, *this)); Size aRet(calcMinimumSize(*this, *this));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment