summaryrefslogtreecommitdiff
path: root/sc/source/ui/miscdlgs/instbdlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/miscdlgs/instbdlg.cxx')
-rw-r--r--sc/source/ui/miscdlgs/instbdlg.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/sc/source/ui/miscdlgs/instbdlg.cxx b/sc/source/ui/miscdlgs/instbdlg.cxx
index 970165618224..7b6571a13b12 100644
--- a/sc/source/ui/miscdlgs/instbdlg.cxx
+++ b/sc/source/ui/miscdlgs/instbdlg.cxx
@@ -22,8 +22,6 @@
-
-
#include <sfx2/app.hxx>
#include <sfx2/docfile.hxx>
#include <sfx2/docinsert.hxx>
@@ -41,8 +39,6 @@
#define SC_INSTBDLG_CXX
#include "instbdlg.hxx"
-
-
ScInsertTableDlg::ScInsertTableDlg( Window* pParent, ScViewData& rData, SCTAB nTabCount, bool bFromFile )
: ModalDialog(pParent, "InsertSheetDialog", "modules/scalc/ui/insertsheet.ui")
, rViewData(rData)
@@ -71,8 +67,6 @@ ScInsertTableDlg::ScInsertTableDlg( Window* pParent, ScViewData& rData, SCTAB nT
Init_Impl( bFromFile );
}
-
-
ScInsertTableDlg::~ScInsertTableDlg()
{
if (pDocShTables)
@@ -80,8 +74,6 @@ ScInsertTableDlg::~ScInsertTableDlg()
delete pDocInserter;
}
-
-
void ScInsertTableDlg::Init_Impl( bool bFromFile )
{
m_pLbTables->EnableMultiSelection(true);
@@ -130,8 +122,6 @@ void ScInsertTableDlg::Init_Impl( bool bFromFile )
}
}
-
-
short ScInsertTableDlg::Execute()
{
// set Parent of DocumentInserter and Doc-Manager
@@ -146,8 +136,6 @@ short ScInsertTableDlg::Execute()
return nRet;
}
-
-
void ScInsertTableDlg::SetNewTable_Impl()
{
if (m_pBtnNew->IsChecked() )
@@ -167,8 +155,6 @@ void ScInsertTableDlg::SetNewTable_Impl()
}
}
-
-
void ScInsertTableDlg::SetFromTo_Impl()
{
if (m_pBtnFromFile->IsChecked() )
@@ -184,8 +170,6 @@ void ScInsertTableDlg::SetFromTo_Impl()
}
}
-
-
void ScInsertTableDlg::FillTables_Impl( ScDocument* pSrcDoc )
{
m_pLbTables->SetUpdateMode( false );
@@ -209,8 +193,6 @@ void ScInsertTableDlg::FillTables_Impl( ScDocument* pSrcDoc )
m_pLbTables->SelectEntryPos(0);
}
-
-
const OUString* ScInsertTableDlg::GetFirstTable( sal_uInt16* pN )
{
const OUString* pStr = NULL;
@@ -232,8 +214,6 @@ const OUString* ScInsertTableDlg::GetFirstTable( sal_uInt16* pN )
return pStr;
}
-
-
const OUString* ScInsertTableDlg::GetNextTable( sal_uInt16* pN )
{
const OUString* pStr = NULL;
@@ -250,8 +230,6 @@ const OUString* ScInsertTableDlg::GetNextTable( sal_uInt16* pN )
return pStr;
}
-
-
// Handler:
@@ -289,8 +267,6 @@ IMPL_LINK_NOARG(ScInsertTableDlg, ChoiceHdl_Impl)
return 0;
}
-
-
IMPL_LINK_NOARG(ScInsertTableDlg, BrowseHdl_Impl)
{
if ( pDocInserter )
@@ -301,16 +277,12 @@ IMPL_LINK_NOARG(ScInsertTableDlg, BrowseHdl_Impl)
return 0;
}
-
-
IMPL_LINK_NOARG(ScInsertTableDlg, SelectHdl_Impl)
{
DoEnable_Impl();
return 0;
}
-
-
void ScInsertTableDlg::DoEnable_Impl()
{
if ( m_pBtnNew->IsChecked() || ( pDocShTables && m_pLbTables->GetSelectEntryCount() ) )