summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-01-21 01:38:01 +0100
committerThomas Arnhold <thomas@arnhold.org>2012-01-21 19:58:45 +0100
commit3bb278f5bfa1cb28ba051bc6980a93d52f9b29e1 (patch)
treee8bdc6a946d63f7ea7a343af86a3285982ccb8a8
parent89898395899f4b2935689a5666d0734ba3d63511 (diff)
unused methods
-rw-r--r--svx/source/table/tablelayouter.cxx22
-rw-r--r--svx/source/table/tablelayouter.hxx3
-rw-r--r--unusedcode.easy7
-rw-r--r--vcl/generic/print/printerjob.cxx19
-rw-r--r--vcl/inc/generic/printerjob.hxx4
5 files changed, 0 insertions, 55 deletions
diff --git a/svx/source/table/tablelayouter.cxx b/svx/source/table/tablelayouter.cxx
index 18e833201de2..2842ecf2c7a4 100644
--- a/svx/source/table/tablelayouter.cxx
+++ b/svx/source/table/tablelayouter.cxx
@@ -1172,28 +1172,6 @@ void TableLayouter::SetWritingMode( com::sun::star::text::WritingMode eWritingMo
meWritingMode = eWritingMode;
}
-// -----------------------------------------------------------------------------
-
-sal_Int32 TableLayouter::getColumnStart( sal_Int32 nColumn ) const
-{
- if( isValidColumn(nColumn) )
- return maColumns[nColumn].mnPos;
- else
- return 0;
-}
-
-// -----------------------------------------------------------------------------
-
-sal_Int32 TableLayouter::getRowStart( sal_Int32 nRow ) const
-{
- if( isValidRow(nRow) )
- return maRows[nRow].mnPos;
- else
- return 0;
-}
-
-// -----------------------------------------------------------------------------
-
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/source/table/tablelayouter.hxx b/svx/source/table/tablelayouter.hxx
index e95159075b46..98b3157a8f5f 100644
--- a/svx/source/table/tablelayouter.hxx
+++ b/svx/source/table/tablelayouter.hxx
@@ -98,9 +98,6 @@ public:
sal_Int32 getMinimumColumnWidth( sal_Int32 nColumn );
- sal_Int32 getColumnStart( sal_Int32 nColumn ) const;
- sal_Int32 getRowStart( sal_Int32 nRow ) const;
-
/** checks if the given edge is visible.
Edges between merged cells are not visible.
*/
diff --git a/unusedcode.easy b/unusedcode.easy
index 9f6f2f05873c..9d44e00d3121 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -1653,9 +1653,6 @@ psp::PrinterGfx::GetGlyphOutline(unsigned short, unsigned short**, Point**, unsi
psp::PrinterGfx::GetResolution(int&, int&) const
psp::PrinterGfx::PSRMoveTo(int, int)
psp::PrinterGfx::SetFallbackFont(int)
-psp::PrinterJob::GetDocumentHeader()
-psp::PrinterJob::GetDocumentTrailer()
-psp::PrinterJob::GetErrorCode()
pyuno::Runtime::finalize()
pyuno::importToGlobal(_object*, _object*, _object*)
rptui::OFieldExpressionControl::LinkStubAsynchActivate(void*, void*)
@@ -1730,10 +1727,6 @@ sdr::table::SdrTableObj::getRowCount() const
sdr::table::SdrTableObjImpl::GetCellItem(sdr::table::CellPos const&, unsigned short) const
sdr::table::SvxTableController::DeleteTable()
sdr::table::SvxTableController::getSelectionCursor()
-sdr::table::TableLayouter::getColumnStart(int) const
-sdr::table::TableLayouter::getRowStart(int) const
-sdr::table::TableLayouter::setColumnWidth(int, int)
-sdr::table::TableLayouter::setRowHeight(int, int)
sfx2::TaskPaneWrapper::GetChildWindowId()
slideshow::internal::DrawShapeSubsetting::reset(slideshow::internal::DocTreeNode const&, boost::shared_ptr<GDIMetaFile> const&)
std::__cxx1998::map<rtl::OUString, OutputStorageWrapper_Impl*, OUStringLess, std::allocator<std::pair<rtl::OUString const, OutputStorageWrapper_Impl*> > >::~map()
diff --git a/vcl/generic/print/printerjob.cxx b/vcl/generic/print/printerjob.cxx
index 423424dfab83..35633cd2c9b5 100644
--- a/vcl/generic/print/printerjob.cxx
+++ b/vcl/generic/print/printerjob.cxx
@@ -179,18 +179,6 @@ PrinterJob::IsColorPrinter () const
}
osl::File*
-PrinterJob::GetDocumentHeader ()
-{
- return mpJobHeader;
-}
-
-osl::File*
-PrinterJob::GetDocumentTrailer ()
-{
- return mpJobTrailer;
-}
-
-osl::File*
PrinterJob::GetCurrentPageHeader ()
{
return maHeaderList.back();
@@ -708,13 +696,6 @@ PrinterJob::EndPage ()
return sal_True;
}
-sal_uInt32
-PrinterJob::GetErrorCode ()
-{
- /* TODO */
- return 0;
-}
-
struct less_ppd_key : public ::std::binary_function<double, double, bool>
{
bool operator()(const PPDKey* left, const PPDKey* right)
diff --git a/vcl/inc/generic/printerjob.hxx b/vcl/inc/generic/printerjob.hxx
index 62a1c078bc32..aa05394ed995 100644
--- a/vcl/inc/generic/printerjob.hxx
+++ b/vcl/inc/generic/printerjob.hxx
@@ -101,8 +101,6 @@ public: // for usage in PrinterGfx
sal_uInt16 GetPostscriptLevel (const JobData *pJobData = NULL) const;
sal_Bool IsColorPrinter () const;
- osl::File* GetDocumentHeader ();
- osl::File* GetDocumentTrailer ();
osl::File* GetCurrentPageHeader ();
osl::File* GetCurrentPageBody ();
@@ -140,8 +138,6 @@ public:
sal_Bool StartPage (const JobData& rJobSetup);
sal_Bool EndPage ();
-
- sal_uInt32 GetErrorCode ();
};
} /* namespace psp */