summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-12-21 09:26:31 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-12-21 09:30:20 +0000
commitc1c3ef64bca25183979f666aef51ab2854d628d8 (patch)
tree03a9e9518dcb9bb80833e79400b98dcbc80bfad3 /sdext
parent725f7d0171985ff858af2436c553b4906bd060f6 (diff)
callcatcher: remove some unused code
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterTextView.cxx32
-rw-r--r--sdext/source/presenter/PresenterTextView.hxx6
2 files changed, 0 insertions, 38 deletions
diff --git a/sdext/source/presenter/PresenterTextView.cxx b/sdext/source/presenter/PresenterTextView.cxx
index 5bfbfd7d77d0..63a0f91bcbae 100644
--- a/sdext/source/presenter/PresenterTextView.cxx
+++ b/sdext/source/presenter/PresenterTextView.cxx
@@ -549,38 +549,6 @@ PresenterTextParagraph::PresenterTextParagraph (
}
}
-
-
-
-PresenterTextParagraph::PresenterTextParagraph (
- const sal_Int32 nParagraphIndex,
- const Reference<i18n::XBreakIterator>& rxBreakIterator,
- const Reference<i18n::XScriptTypeDetector>& rxScriptTypeDetector,
- const ::rtl::OUString& rsText,
- const SharedPresenterTextCaret& rpCaret)
- : msParagraphText(rsText),
- mnParagraphIndex(nParagraphIndex),
- mpCaret(rpCaret),
- mxBreakIterator(rxBreakIterator),
- mxScriptTypeDetector(rxScriptTypeDetector),
- maLines(),
- mnVerticalOffset(0),
- mnXOrigin(0),
- mnYOrigin(0),
- mnWidth(0),
- mnAscent(0),
- mnDescent(0),
- mnLineHeight(-1),
- meAdjust(style::ParagraphAdjust_LEFT),
- mnWritingMode (text::WritingMode2::LR_TB),
- mnCharacterOffset(0),
- maCells()
-{
-}
-
-
-
-
void PresenterTextParagraph::Paint (
const Reference<rendering::XCanvas>& rxCanvas,
const geometry::RealSize2D& rSize,
diff --git a/sdext/source/presenter/PresenterTextView.hxx b/sdext/source/presenter/PresenterTextView.hxx
index 062a24721466..32c54caa373e 100644
--- a/sdext/source/presenter/PresenterTextView.hxx
+++ b/sdext/source/presenter/PresenterTextView.hxx
@@ -108,12 +108,6 @@ public:
const cssu::Reference<css::i18n::XScriptTypeDetector>& rxScriptTypeDetector,
const cssu::Reference<css::text::XTextRange>& rxTextRange,
const SharedPresenterTextCaret& rpCaret);
- PresenterTextParagraph (
- const sal_Int32 nParagraphIndex,
- const cssu::Reference<css::i18n::XBreakIterator>& rxBreakIterator,
- const cssu::Reference<css::i18n::XScriptTypeDetector>& rxScriptTypeDetector,
- const ::rtl::OUString& rsText,
- const SharedPresenterTextCaret& rpCaret);
void Paint (
const cssu::Reference<css::rendering::XCanvas>& rxCanvas,