diff options
38 files changed, 15 insertions, 268 deletions
diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index b473fe3bb11a..44bf027627b3 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx @@ -93,55 +93,6 @@ namespace } // class OFieldDescControl - - -OFieldDescControl::OFieldDescControl( Window* pParent, const ResId& rResId, OTableDesignHelpBar* pHelpBar) - :TabPage( pParent, rResId ) - ,pHelp( pHelpBar ) - ,pLastFocusWindow(NULL) - ,m_pActFocusWindow(NULL) - ,pDefaultText(NULL) - ,pRequiredText(NULL) - ,pAutoIncrementText(NULL) - ,pTextLenText(NULL) - ,pNumTypeText(NULL) - ,pLengthText(NULL) - ,pScaleText(NULL) - ,pFormatText(NULL) - ,pBoolDefaultText(NULL) - ,m_pColumnNameText(NULL) - ,m_pTypeText(NULL) - ,m_pAutoIncrementValueText(NULL) - ,pRequired(NULL) - ,pNumType(NULL) - ,pAutoIncrement(NULL) - ,pDefault(NULL) - ,pTextLen(NULL) - ,pLength(NULL) - ,pScale(NULL) - ,pFormatSample(NULL) - ,pBoolDefault(NULL) - ,m_pColumnName(NULL) - ,m_pType(NULL) - ,m_pAutoIncrementValue(NULL) - ,pFormat(NULL) - ,m_pVertScroll( NULL ) - ,m_pHorzScroll( NULL ) - ,m_pPreviousType() - ,m_nPos(-1) - ,aYes(ModuleRes(STR_VALUE_YES)) - ,aNo(ModuleRes(STR_VALUE_NO)) - ,m_nOldVThumb( 0 ) - ,m_nOldHThumb( 0 ) - ,m_nWidth(50) - ,m_bAdded(false) - ,m_bRightAligned(false) - ,pActFieldDescr(NULL) -{ - - Contruct(); -} - OFieldDescControl::OFieldDescControl( Window* pParent, OTableDesignHelpBar* pHelpBar ) :TabPage( pParent, WB_3DLOOK | WB_DIALOGCONTROL ) ,pHelp( pHelpBar ) diff --git a/dbaccess/source/ui/control/marktree.cxx b/dbaccess/source/ui/control/marktree.cxx index b012cba4f5fe..b6a7a597121e 100644 --- a/dbaccess/source/ui/control/marktree.cxx +++ b/dbaccess/source/ui/control/marktree.cxx @@ -35,13 +35,6 @@ OMarkableTreeListBox::OMarkableTreeListBox( Window* pParent, WinBits nWinStyle ) InitButtonData(); } -OMarkableTreeListBox::OMarkableTreeListBox( Window* pParent, const ResId& rResId) - : DBTreeListBox(pParent, rResId) -{ - - InitButtonData(); -} - OMarkableTreeListBox::~OMarkableTreeListBox() { delete m_pCheckButton; diff --git a/dbaccess/source/ui/dlg/ConnectionHelper.cxx b/dbaccess/source/ui/dlg/ConnectionHelper.cxx index 44c9f7519c51..ce5803af3bed 100644 --- a/dbaccess/source/ui/dlg/ConnectionHelper.cxx +++ b/dbaccess/source/ui/dlg/ConnectionHelper.cxx @@ -88,27 +88,6 @@ namespace dbaui using namespace ::dbtools; using namespace ::svt; - - OConnectionHelper::OConnectionHelper( Window* pParent, const ResId& _rId, const SfxItemSet& _rCoreAttrs) - : OGenericAdministrationPage(pParent, _rId, _rCoreAttrs) - , m_bUserGrabFocus(false) - , m_pFT_Connection(new FixedText(this, ResId(FT_AUTOBROWSEURL, *_rId.GetResMgr()))) - , m_pConnectionURL(new OConnectionURLEdit(this, ResId(ET_AUTOBROWSEURL, *_rId.GetResMgr()))) - , m_pPB_Connection(new PushButton(this, ResId(PB_AUTOBROWSEURL, *_rId.GetResMgr()))) - , m_pPB_CreateDB(new PushButton(this, ResId(PB_CREATEDB, *_rId.GetResMgr()))) - , m_pCollection(NULL) - , m_bDelete(true) - { - // extract the datasource type collection from the item set - DbuTypeCollectionItem* pCollectionItem = PTR_CAST(DbuTypeCollectionItem, _rCoreAttrs.GetItem(DSID_TYPECOLLECTION)); - if (pCollectionItem) - m_pCollection = pCollectionItem->getCollection(); - m_pPB_Connection->SetClickHdl(LINK(this, OConnectionHelper, OnBrowseConnections)); - m_pPB_CreateDB->SetClickHdl(LINK(this, OConnectionHelper, OnCreateDatabase)); - OSL_ENSURE(m_pCollection, "OConnectionHelper::OConnectionHelper : really need a DSN type collection !"); - m_pConnectionURL->SetTypeCollection(m_pCollection); - } - OConnectionHelper::OConnectionHelper( Window* pParent, const OString& _rId, const OUString& _rUIXMLDescription, const SfxItemSet& _rCoreAttrs) : OGenericAdministrationPage(pParent, _rId, _rUIXMLDescription, _rCoreAttrs) , m_bUserGrabFocus(false) diff --git a/dbaccess/source/ui/dlg/ConnectionHelper.hxx b/dbaccess/source/ui/dlg/ConnectionHelper.hxx index 95a222f10a37..78aa62db9293 100644 --- a/dbaccess/source/ui/dlg/ConnectionHelper.hxx +++ b/dbaccess/source/ui/dlg/ConnectionHelper.hxx @@ -40,7 +40,6 @@ namespace dbaui bool m_bUserGrabFocus : 1; public: - OConnectionHelper( Window* pParent, const ResId& _rId, const SfxItemSet& _rCoreAttrs); OConnectionHelper( Window* pParent, const OString& _rId, const OUString& _rUIXMLDescription, const SfxItemSet& _rCoreAttrs); virtual ~OConnectionHelper(); FixedText *m_pFT_Connection; diff --git a/dbaccess/source/ui/dlg/adminpages.cxx b/dbaccess/source/ui/dlg/adminpages.cxx index 331ac2f3690b..60e919dfda06 100644 --- a/dbaccess/source/ui/dlg/adminpages.cxx +++ b/dbaccess/source/ui/dlg/adminpages.cxx @@ -278,15 +278,6 @@ namespace dbaui return 0L; } - void OGenericAdministrationPage::SetHeaderText( sal_uInt16 _nFTResId, sal_uInt16 _StringResId) - { - delete(m_pFT_HeaderText); - m_pFT_HeaderText = new FixedText(this, ModuleRes(_nFTResId)); - OUString sHeaderText = ModuleRes(_StringResId); - m_pFT_HeaderText->SetText(sHeaderText); - SetControlFontWeight(m_pFT_HeaderText); - } - // LayoutHelper void LayoutHelper::positionBelow( const Control& _rReference, Control& _rControl, const ControlRelation _eRelation, const long _nIndentAppFont ) diff --git a/dbaccess/source/ui/dlg/adminpages.hxx b/dbaccess/source/ui/dlg/adminpages.hxx index 846c0286dbab..aa4200f8dd13 100644 --- a/dbaccess/source/ui/dlg/adminpages.hxx +++ b/dbaccess/source/ui/dlg/adminpages.hxx @@ -233,7 +233,6 @@ namespace dbaui protected: // used to set the right Pane header of a wizard to bold void SetControlFontWeight(Window* _pWindow, FontWeight _eWeight = WEIGHT_BOLD); - void SetHeaderText( sal_uInt16 _nFTResId, sal_uInt16 _StringResId); /** This link be used for controls where the tabpage does not need to take any special action when the control is modified. The implementation just calls callModifiedHdl. diff --git a/dbaccess/source/ui/inc/FieldDescControl.hxx b/dbaccess/source/ui/inc/FieldDescControl.hxx index 308947bd9a87..01bb0591b54d 100644 --- a/dbaccess/source/ui/inc/FieldDescControl.hxx +++ b/dbaccess/source/ui/inc/FieldDescControl.hxx @@ -174,7 +174,6 @@ namespace dbaui public: OFieldDescControl( Window* pParent, OTableDesignHelpBar* pHelpBar); - OFieldDescControl( Window* pParent, const ResId& rResId, OTableDesignHelpBar* pHelpBar); virtual ~OFieldDescControl(); void DisplayData(OFieldDescription* pFieldDescr ); diff --git a/dbaccess/source/ui/inc/WTabPage.hxx b/dbaccess/source/ui/inc/WTabPage.hxx index daa4b71bde6d..83398f7e385f 100644 --- a/dbaccess/source/ui/inc/WTabPage.hxx +++ b/dbaccess/source/ui/inc/WTabPage.hxx @@ -32,7 +32,6 @@ namespace dbaui OCopyTableWizard* m_pParent; bool m_bFirstTime; // Page wird das erste mal gerufen ; should be set in the reset methode - OWizardPage( Window* pParent, const ResId& rResId ); OWizardPage( Window *pParent, const OString& rID, const OUString& rUIXMLDescription ); public: diff --git a/dbaccess/source/ui/inc/marktree.hxx b/dbaccess/source/ui/inc/marktree.hxx index 77fb8114ca04..cd86e1a8eba1 100644 --- a/dbaccess/source/ui/inc/marktree.hxx +++ b/dbaccess/source/ui/inc/marktree.hxx @@ -39,7 +39,6 @@ class OMarkableTreeListBox : public DBTreeListBox public: OMarkableTreeListBox( Window* pParent, WinBits nWinStyle=0 ); - OMarkableTreeListBox( Window* pParent, const ResId& rResId ); virtual ~OMarkableTreeListBox(); virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE; diff --git a/dbaccess/source/ui/misc/WColumnSelect.cxx b/dbaccess/source/ui/misc/WColumnSelect.cxx index 0f9ce1cafec9..62cce5672ff3 100644 --- a/dbaccess/source/ui/misc/WColumnSelect.cxx +++ b/dbaccess/source/ui/misc/WColumnSelect.cxx @@ -43,13 +43,6 @@ namespace CopyTableOperation = ::com::sun::star::sdb::application::CopyTableOper OUString OWizColumnSelect::GetTitle() const { return ModuleRes(STR_WIZ_COLUMN_SELECT_TITEL); } -OWizardPage::OWizardPage( Window* pParent, const ResId& rResId ) - : TabPage(pParent,rResId) - ,m_pParent(static_cast<OCopyTableWizard*>(pParent)) - ,m_bFirstTime(true) -{ -} - OWizardPage::OWizardPage(Window* pParent, const OString& rID, const OUString& rUIXMLDescription) : TabPage(pParent, rID, rUIXMLDescription) ,m_pParent(static_cast<OCopyTableWizard*>(pParent)) diff --git a/include/svtools/roadmapwizard.hxx b/include/svtools/roadmapwizard.hxx index 8dfd11133a68..b1145b20602c 100644 --- a/include/svtools/roadmapwizard.hxx +++ b/include/svtools/roadmapwizard.hxx @@ -69,11 +69,6 @@ namespace svt public: RoadmapWizard( Window* _pParent, - const ResId& _rRes, - sal_uInt32 _nButtonFlags = WZB_NEXT | WZB_PREVIOUS | WZB_FINISH | WZB_CANCEL | WZB_HELP - ); - RoadmapWizard( - Window* _pParent, const WinBits i_nStyle, sal_uInt32 _nButtonFlags = WZB_NEXT | WZB_PREVIOUS | WZB_FINISH | WZB_CANCEL | WZB_HELP ); diff --git a/include/svtools/simptabl.hxx b/include/svtools/simptabl.hxx index 4a0d10780851..53fc594e0c00 100644 --- a/include/svtools/simptabl.hxx +++ b/include/svtools/simptabl.hxx @@ -34,7 +34,6 @@ protected: virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE; public: - SvSimpleTableContainer( Window* pParent, const ResId& rResId ); SvSimpleTableContainer( Window* pParent, WinBits nBits = WB_BORDER ); void SetTable(SvSimpleTable* pTable); diff --git a/include/svtools/stdctrl.hxx b/include/svtools/stdctrl.hxx index 56643816dd56..271b5d3de6b9 100644 --- a/include/svtools/stdctrl.hxx +++ b/include/svtools/stdctrl.hxx @@ -25,14 +25,9 @@ #include <vcl/edit.hxx> #include <vcl/fixed.hxx> - -// - FixedInfo - - - class SVT_DLLPUBLIC FixedInfo : public FixedText { public: - FixedInfo( Window* pParent, WinBits nWinStyle = WB_LEFT ); FixedInfo( Window* pParent, const ResId& rResId ); }; diff --git a/include/svtools/svmedit.hxx b/include/svtools/svmedit.hxx index 7d84c2efee4d..0970e38b40aa 100644 --- a/include/svtools/svmedit.hxx +++ b/include/svtools/svmedit.hxx @@ -32,7 +32,6 @@ class SVT_DLLPUBLIC MultiLineEdit : public VclMultiLineEdit { public: MultiLineEdit( Window* pParent, WinBits nWinStyle = WB_LEFT | WB_BORDER ); - MultiLineEdit( Window* pParent, const ResId& rResId ); virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > GetComponentInterface(sal_Bool bCreate = sal_True) SAL_OVERRIDE; diff --git a/include/svtools/svtabbx.hxx b/include/svtools/svtabbx.hxx index fca0de90e117..8ade2a01fbd5 100644 --- a/include/svtools/svtabbx.hxx +++ b/include/svtools/svtabbx.hxx @@ -64,7 +64,6 @@ protected: public: SvTabListBox( Window* pParent, WinBits = WB_BORDER ); - SvTabListBox( Window* pParent, const ResId& ); virtual ~SvTabListBox(); void SetTabs( long* pTabs, MapUnit = MAP_APPFONT ); sal_uInt16 TabCount() const { return (sal_uInt16)nTabCount; } diff --git a/include/svx/stddlg.hxx b/include/svx/stddlg.hxx index 8a53be59d32b..44ef8246b864 100644 --- a/include/svx/stddlg.hxx +++ b/include/svx/stddlg.hxx @@ -27,7 +27,6 @@ class SVX_DLLPUBLIC SvxStandardDialog: public SfxModalDialog { public: - SvxStandardDialog( Window* pParent, const ResId& rResId ); SvxStandardDialog( Window* pParent, const OString& rID, const OUString& rUIXMLDescription ); virtual ~SvxStandardDialog(); diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx index 27c79e1c6d3d..2b653f855d88 100644 --- a/include/vcl/dialog.hxx +++ b/include/vcl/dialog.hxx @@ -144,10 +144,7 @@ public: void GrabFocusToFirstControl(); }; - // - ModelessDialog - - - class VCL_DLLPUBLIC ModelessDialog : public Dialog { // Copy assignment is forbidden and not implemented. @@ -155,14 +152,10 @@ class VCL_DLLPUBLIC ModelessDialog : public Dialog SAL_DLLPRIVATE ModelessDialog & operator= (const ModelessDialog &); public: - explicit ModelessDialog( Window* pParent, const ResId& rResId ); explicit ModelessDialog( Window* pParent, const OString& rID, const OUString& rUIXMLDescription ); }; - // - ModalDialog - - - class VCL_DLLPUBLIC ModalDialog : public Dialog { public: diff --git a/include/vcl/group.hxx b/include/vcl/group.hxx index 7e5e11cb9913..a8956de6c814 100644 --- a/include/vcl/group.hxx +++ b/include/vcl/group.hxx @@ -47,7 +47,6 @@ private: public: explicit GroupBox( Window* pParent, WinBits nStyle = 0 ); - explicit GroupBox( Window* pParent, const ResId& ); virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE; virtual void Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong nFlags ) SAL_OVERRIDE; diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx index f8b76b113d8d..e0dbf934c21c 100644 --- a/include/vcl/lstbox.hxx +++ b/include/vcl/lstbox.hxx @@ -254,7 +254,6 @@ private: public: explicit MultiListBox( Window* pParent, WinBits nStyle = 0 ); - explicit MultiListBox( Window* pParent, const ResId& rResId ); }; diff --git a/include/vcl/prgsbar.hxx b/include/vcl/prgsbar.hxx index c00069828ae2..943dd54d1b94 100644 --- a/include/vcl/prgsbar.hxx +++ b/include/vcl/prgsbar.hxx @@ -72,7 +72,6 @@ private: public: ProgressBar( Window* pParent, WinBits nWinBits = WB_STDPROGRESSBAR ); - ProgressBar( Window* pParent, const ResId& rResId ); virtual ~ProgressBar(); virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE; diff --git a/include/vcl/scrbar.hxx b/include/vcl/scrbar.hxx index c1e55644160a..c285c13361aa 100644 --- a/include/vcl/scrbar.hxx +++ b/include/vcl/scrbar.hxx @@ -91,7 +91,6 @@ private: public: explicit ScrollBar( Window* pParent, WinBits nStyle = WB_VERT ); - explicit ScrollBar( Window* pParent, const ResId& ); virtual ~ScrollBar(); virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; diff --git a/svtools/source/contnr/simptabl.cxx b/svtools/source/contnr/simptabl.cxx index dcb87ad40200..62e275c15a93 100644 --- a/svtools/source/contnr/simptabl.cxx +++ b/svtools/source/contnr/simptabl.cxx @@ -26,15 +26,6 @@ #include <vcl/svapp.hxx> #include <vcl/settings.hxx> -// SvSimpleTableContainer ------------------------------------------------------ - -SvSimpleTableContainer::SvSimpleTableContainer(Window* pParent, const ResId& rResId) - : Control(pParent, rResId) - , m_pTable(NULL) -{ - SetBorderStyle(WINDOW_BORDER_NOBORDER); -} - SvSimpleTableContainer::SvSimpleTableContainer(Window* pParent, WinBits nBits) : Control(pParent, nBits) , m_pTable(NULL) diff --git a/svtools/source/contnr/svtabbx.cxx b/svtools/source/contnr/svtabbx.cxx index 80fd9c04479e..558be20a0650 100644 --- a/svtools/source/contnr/svtabbx.cxx +++ b/svtools/source/contnr/svtabbx.cxx @@ -108,16 +108,6 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvTabListBox(Window *pParen return new SvTabListBox(pParent, nWinStyle); } -SvTabListBox::SvTabListBox( Window* pParent, const ResId& rResId ) - : SvTreeListBox( pParent, rResId ) -{ - pTabList = 0; - nTabCount = 0; - pViewParent = 0; - SvTabListBox::Resize(); - SetHighlightRange(); -} - SvTabListBox::~SvTabListBox() { // delete array diff --git a/svtools/source/control/stdctrl.cxx b/svtools/source/control/stdctrl.cxx index 74141c88eee0..bc117dcc848c 100644 --- a/svtools/source/control/stdctrl.cxx +++ b/svtools/source/control/stdctrl.cxx @@ -17,18 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ - #include <svtools/stdctrl.hxx> - - -FixedInfo::FixedInfo( Window* pParent, WinBits nWinStyle ) : - FixedText( pParent, nWinStyle | WB_INFO ) -{ -} - - - FixedInfo::FixedInfo( Window* pParent, const ResId& rResId ) : FixedText( pParent, rResId ) { diff --git a/svtools/source/dialogs/roadmapwizard.cxx b/svtools/source/dialogs/roadmapwizard.cxx index b6cf0c4c80db..ba3a71876fc4 100644 --- a/svtools/source/dialogs/roadmapwizard.cxx +++ b/svtools/source/dialogs/roadmapwizard.cxx @@ -165,14 +165,6 @@ namespace svt } #endif - RoadmapWizard::RoadmapWizard( Window* _pParent, const ResId& _rRes, sal_uInt32 _nButtonFlags ) - :OWizardMachine( _pParent, _rRes, _nButtonFlags ) - ,m_pImpl( new RoadmapWizardImpl ) - { - impl_construct(); - } - - RoadmapWizard::RoadmapWizard( Window* _pParent, const WinBits i_nStyle, sal_uInt32 _nButtonFlags ) :OWizardMachine( _pParent, i_nStyle, _nButtonFlags ) ,m_pImpl( new RoadmapWizardImpl ) diff --git a/svtools/source/edit/svmedit.cxx b/svtools/source/edit/svmedit.cxx index 2d2140135c1a..8ea2f0af83bf 100644 --- a/svtools/source/edit/svmedit.cxx +++ b/svtools/source/edit/svmedit.cxx @@ -25,10 +25,6 @@ MultiLineEdit::MultiLineEdit( Window* pParent, WinBits nWinStyle ) : VclMultiLineEdit( pParent,nWinStyle ) { } -MultiLineEdit::MultiLineEdit( Window* pParent, const ResId& rResId ) - : VclMultiLineEdit( pParent,rResId ) -{ -} // virtual css::uno::Reference< css::awt::XWindowPeer > diff --git a/svx/source/dialog/stddlg.cxx b/svx/source/dialog/stddlg.cxx index f850b443d061..3ea9673cfe0c 100644 --- a/svx/source/dialog/stddlg.cxx +++ b/svx/source/dialog/stddlg.cxx @@ -35,24 +35,13 @@ short SvxStandardDialog::Execute() return nRet; } - - -SvxStandardDialog::SvxStandardDialog( Window *pParent, const ResId &rResId ) - : SfxModalDialog( pParent, rResId ) -{ -} - SvxStandardDialog::SvxStandardDialog(Window *pParent, const OString& rID, const OUString& rUIXMLDescription ) : SfxModalDialog(pParent, rID, rUIXMLDescription) { } - - SvxStandardDialog::~SvxStandardDialog() { } - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/inc/glosbib.hxx b/sw/source/uibase/inc/glosbib.hxx index e744c6be1e8c..fc339c174718 100644 --- a/sw/source/uibase/inc/glosbib.hxx +++ b/sw/source/uibase/inc/glosbib.hxx @@ -60,11 +60,6 @@ struct GlosBibUserData class SwGlossaryGroupTLB : public SvTabListBox { public: - SwGlossaryGroupTLB(Window* pParent, const ResId& rResId) - : SvTabListBox(pParent, rResId) - { - } - SwGlossaryGroupTLB(Window* pParent) : SvTabListBox(pParent, WB_BORDER|WB_HSCROLL|WB_CLIPCHILDREN|WB_SORT) { diff --git a/unusedcode.easy b/unusedcode.easy index 5da63ae1fe44..dc8ae9669f60 100644 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -1,6 +1,7 @@ (anonymous namespace)::flagToString(unsigned short) BigInt::BigInt(unsigned int) CalcUnoApiTest::CalcUnoApiTest(rtl::OUString const&) +DocxSdrExport::isParagraphSdtOpen() GDriveDocument::GDriveDocument(GDriveSession*) GDriveFolder::GDriveFolder(GDriveSession*) GDriveProperty::GDriveProperty() @@ -29,6 +30,7 @@ ScRawToken::Delete() ScTabView::DrawMarkRect(Rectangle const&) ScTable::AttachFormulaCells(sc::StartListeningContext&, short, int, short, int) ScTable::DetachFormulaCells(sc::EndListeningContext&, short, int, short, int) +ScTable::MarkSubTotalCells(sc::ColumnSpanSet&, short, int, short, int, bool) const ScVbaFormat<ooo::vba::excel::XStyle>::getAddIndent() ScVbaFormat<ooo::vba::excel::XStyle>::setAddIndent(com::sun::star::uno::Any const&) SfxAppMenuControl_Impl::RegisterControl(unsigned short, SfxModule*) @@ -46,6 +48,7 @@ SvxFontListBox::GetSelectEntry() const SvxOpenGLObject::getRenderer() SvxOpenGLObject::setRenderer(IOpenGLRenderer*) SwLayHelper::CheckPageFlyCache(SwPageFrm*&, SwFlyFrm*) +SwTxtPaintInfo::DrawSpecial(SwLinePortion const&, unsigned short, Color const&) const SwUpdateAttr::SwUpdateAttr(int, int, unsigned short, std::__debug::vector<unsigned short, std::allocator<unsigned short> >) Test::testCopyPasteSkipEmptyConditionalFormatting() Test::testPerf() @@ -165,6 +168,8 @@ apitest::XSpreadsheets2::testImportOverExistingNamedRange() apitest::XSpreadsheets2::testImportString() apitest::XSpreadsheets2::testImportValue() apitest::XSpreadsheets2::testImportedSheetNameAndIndex() +apitest::XStyleLoader::testLoadStylesFromDocument() +apitest::XStyleLoader::testLoadStylesFromURL() apitest::XText::testInsertRemoveTextContent() apitest::XTextContent::testAttach() apitest::XTextContent::testGetAnchor() @@ -174,8 +179,11 @@ calc::OCellListSource::checkConsistency_static(void const*) calc::OCellValueBinding::checkConsistency_static(void const*) canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&) chart::ChartTypeUnoDlg::Create(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) +chart::InternalData::isDefaultData() chart::ShapeToolbarController::create(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) -chart::opengl3D::Bar::Bar(chart::opengl3D::OpenGL3DRenderer*, glm::detail::tmat4x4<float> const&, unsigned int, unsigned int) +chart::opengl3D::OpenGL3DRenderer::SetScroll() +chart::opengl3D::OpenGL3DRenderer::SetScrollDistance(float) +chart::opengl3D::OpenGL3DRenderer::SetScrollSpeed(float) comphelper::OAccessibleImplementationAccess::setStateBit(short, bool) comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&) const comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const @@ -183,6 +191,7 @@ comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::share 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(bool) connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, bool) +dbaccess::ORowSetCacheIterator::getMutex() const oglcanvas::CanvasHelper::flush() const oglcanvas::TextLayout::draw(com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&, com::sun::star::uno::Reference<com::sun::star::rendering::XGraphicDevice> const&) const oox::drawingml::TextListStyle::dump() const @@ -201,9 +210,12 @@ std::_Rb_tree<rtl::OUString, std::pair<rtl::OUString const, (anonymous namespace std::__cxx1998::vector<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread>, std::allocator<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread> > >::reserve(unsigned long) std::auto_ptr<formula::FormulaTokenArray>::auto_ptr(std::auto_ptr<formula::FormulaTokenArray>&) std::auto_ptr<formula::FormulaTokenArray>::auto_ptr(std::auto_ptr_ref<formula::FormulaTokenArray>) +svgio::svgreader::SvgDocument::removeSvgStyleAttributesFromMapper(rtl::OUString const&) svl::GridPrinter::clear() svl::GridPrinter::resize(unsigned long, unsigned long) svt::CheckInvariants(void const*) svt::table::TableControl_Impl::impl_checkInvariants() const svt::table::UnoControlTableModel::checkInvariants() const vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool) +writerfilter::dmapper::StyleSheetTable::GetStyleIdFromIndex(unsigned int) +writerfilter::ooxml::OOXMLBooleanValue::OOXMLBooleanValue(char const*) diff --git a/vcl/source/control/group.cxx b/vcl/source/control/group.cxx index 97142fb6077b..320cade9ee77 100644 --- a/vcl/source/control/group.cxx +++ b/vcl/source/control/group.cxx @@ -92,18 +92,6 @@ GroupBox::GroupBox( Window* pParent, WinBits nStyle ) : ImplInit( pParent, nStyle ); } -GroupBox::GroupBox( Window* pParent, const ResId& rResId ) : - Control( WINDOW_GROUPBOX ) -{ - rResId.SetRT( RSC_GROUPBOX ); - WinBits nStyle = ImplInitRes( rResId ); - ImplInit( pParent, nStyle ); - ImplLoadRes( rResId ); - - if ( !(nStyle & WB_HIDE) ) - Show(); -} - void GroupBox::ImplDraw( OutputDevice* pDev, sal_uLong nDrawFlags, const Point& rPos, const Size& rSize, bool bLayout ) { diff --git a/vcl/source/control/lstbox.cxx b/vcl/source/control/lstbox.cxx index cdb711917a53..d6c676451445 100644 --- a/vcl/source/control/lstbox.cxx +++ b/vcl/source/control/lstbox.cxx @@ -1496,17 +1496,4 @@ MultiListBox::MultiListBox( Window* pParent, WinBits nStyle ) : EnableMultiSelection( true ); } -MultiListBox::MultiListBox( Window* pParent, const ResId& rResId ) : - ListBox( WINDOW_MULTILISTBOX ) -{ - rResId.SetRT( RSC_MULTILISTBOX ); - WinBits nStyle = ImplInitRes( rResId ); - ImplInit( pParent, nStyle ); - ImplLoadRes( rResId ); - - if ( !(nStyle & WB_HIDE ) ) - Show(); - EnableMultiSelection( true ); -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vcl/source/control/prgsbar.cxx b/vcl/source/control/prgsbar.cxx index 8bbaafcede8c..4634300a68b5 100644 --- a/vcl/source/control/prgsbar.cxx +++ b/vcl/source/control/prgsbar.cxx @@ -56,12 +56,6 @@ ProgressBar::ProgressBar( Window* pParent, WinBits nWinStyle ) : ImplInit(); } -ProgressBar::ProgressBar( Window* pParent, const ResId& rResId ) : - Window( pParent, rResId ) -{ - ImplInit(); -} - ProgressBar::~ProgressBar() { } diff --git a/vcl/source/control/scrbar.cxx b/vcl/source/control/scrbar.cxx index dc7213001e28..f7a87b3058ac 100644 --- a/vcl/source/control/scrbar.cxx +++ b/vcl/source/control/scrbar.cxx @@ -123,18 +123,6 @@ ScrollBar::ScrollBar( Window* pParent, WinBits nStyle ) : ImplInit( pParent, nStyle ); } -ScrollBar::ScrollBar( Window* pParent, const ResId& rResId ) : - Control( WINDOW_SCROLLBAR ) -{ - rResId.SetRT( RSC_SCROLLBAR ); - WinBits nStyle = ImplInitRes( rResId ); - ImplInit( pParent, nStyle ); - ImplLoadRes( rResId ); - - if ( !(nStyle & WB_HIDE) ) - Show(); -} - ScrollBar::~ScrollBar() { delete mpData; diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx index ef315da58934..a686c7844280 100644 --- a/vcl/source/window/dialog.cxx +++ b/vcl/source/window/dialog.cxx @@ -1280,19 +1280,8 @@ VclBuilderContainer::~VclBuilderContainer() delete m_pUIBuilder; } -ModelessDialog::ModelessDialog( Window* pParent, const ResId& rResId ) : - Dialog( WINDOW_MODELESSDIALOG ) -{ - rResId.SetRT( RSC_MODELESSDIALOG ); - - WinBits nStyle = init( pParent, rResId ); - - if ( !(nStyle & WB_HIDE) ) - Show(); -} - -ModelessDialog::ModelessDialog( Window* pParent, const OString& rID, const OUString& rUIXMLDescription ) : - Dialog(pParent, rID, rUIXMLDescription, WINDOW_MODELESSDIALOG) +ModelessDialog::ModelessDialog(Window* pParent, const OString& rID, const OUString& rUIXMLDescription) + : Dialog(pParent, rID, rUIXMLDescription, WINDOW_MODELESSDIALOG) { } diff --git a/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx b/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx index 650adc5c8714..eaf2fa901a74 100644 --- a/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx +++ b/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx @@ -66,7 +66,6 @@ class CertificateViewerTP : public TabPage protected: CertificateViewer* mpDlg; public: - CertificateViewerTP( Window* _pParent, const ResId& _rResId, CertificateViewer* _pDlg ); CertificateViewerTP( Window* _pParent, const OString& rID, const OUString& rUIXMLDescription, CertificateViewer* _pDlg ); void SetTabDlg( CertificateViewer* _pTabDlg ) diff --git a/xmlsecurity/source/dialogs/certificateviewer.cxx b/xmlsecurity/source/dialogs/certificateviewer.cxx index 762bc1748ef7..b704530e5ca3 100644 --- a/xmlsecurity/source/dialogs/certificateviewer.cxx +++ b/xmlsecurity/source/dialogs/certificateviewer.cxx @@ -66,12 +66,6 @@ CertificateViewer::~CertificateViewer() delete mpTabCtrl->GetTabPage(mnPathId); } -CertificateViewerTP::CertificateViewerTP( Window* _pParent, const ResId& _rResId, CertificateViewer* _pDlg ) - :TabPage ( _pParent, _rResId ) - ,mpDlg ( _pDlg ) -{ -} - CertificateViewerTP::CertificateViewerTP( Window* _pParent, const OString& rID, const OUString& rUIXMLDescription, CertificateViewer* _pDlg ) : TabPage(_pParent, rID, rUIXMLDescription) diff --git a/xmlsecurity/source/dialogs/resourcemanager.cxx b/xmlsecurity/source/dialogs/resourcemanager.cxx index d6d707b6c72d..7a6498acf3b2 100644 --- a/xmlsecurity/source/dialogs/resourcemanager.cxx +++ b/xmlsecurity/source/dialogs/resourcemanager.cxx @@ -356,28 +356,6 @@ vector< pair< OUString, OUString> > parseDN(const OUString& rRawString) _rCtrl.SetSizePixel( aSize ); return nWidth; } - - void AlignAfterImage( const FixedImage& _rImage, Control& _rCtrl, long _nXOffset ) - { - Point aPos( _rImage.GetPosPixel() ); - Size aSize( _rImage.GetSizePixel() ); - long n = aPos.X(); - n += aSize.Width(); - n += _nXOffset; - aPos.X() = n; - n = aPos.Y(); - n += aSize.Height() / 2; // y-position is in the middle of the image - n -= _rCtrl.GetSizePixel().Height() / 2; // center Control - aPos.Y() = n; - _rCtrl.SetPosPixel( aPos ); - } - - void AlignAfterImage( const FixedImage& _rImage, FixedInfo& _rFI, long _nXOffset ) - { - AlignAfterImage( _rImage, static_cast< Control& >( _rFI ), _nXOffset ); - ShrinkToFitWidth( _rFI ); - } } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmlsecurity/source/dialogs/resourcemanager.hxx b/xmlsecurity/source/dialogs/resourcemanager.hxx index aca055742fa4..3010f2abffdb 100644 --- a/xmlsecurity/source/dialogs/resourcemanager.hxx +++ b/xmlsecurity/source/dialogs/resourcemanager.hxx @@ -50,8 +50,6 @@ namespace XmlSec OUString GetHexString( const ::com::sun::star::uno::Sequence< sal_Int8 >& _rSeq, const char* _pSep = ":", sal_uInt16 _nLineBreak = 0xFFFF ); long ShrinkToFitWidth( Control& _rCtrl, long _nOffs = 0 ); // return = new width - void AlignAfterImage( const FixedImage& _rImage, Control& _rCtrl, long _nXOffset = 0 ); - void AlignAfterImage( const FixedImage& _rImage, FixedInfo& _rFI, long _nXOffset = 0 ); } #define XMLSEC_RES(id) ResId(id,*XmlSec::GetResMgr()) |