summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/editeng/editeng.hxx4
-rw-r--r--include/editeng/outliner.hxx7
-rw-r--r--include/editeng/svxrtf.hxx1
-rw-r--r--include/svtools/wizardmachine.hxx3
-rw-r--r--include/svx/AccessibleShapeInfo.hxx13
-rw-r--r--include/vcl/print.hxx11
6 files changed, 6 insertions, 33 deletions
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx
index 9546445638af..debd4d141b49 100644
--- a/include/editeng/editeng.hxx
+++ b/include/editeng/editeng.hxx
@@ -481,7 +481,7 @@ public:
virtual void DrawingText( const Point& rStartPos, const OUString& rText,
sal_Int32 nTextStart, sal_Int32 nTextLen,
const long* pDXArray, const SvxFont& rFont,
- sal_Int32 nPara, sal_Int32 nIndex, sal_uInt8 nRightToLeft,
+ sal_uInt8 nRightToLeft,
const EEngineData::WrongSpellVector* pWrongSpellVector,
const SvxFieldData* pFieldData,
bool bEndOfLine,
@@ -492,7 +492,7 @@ public:
const Color& rTextLineColor);
virtual void DrawingTab( const Point& rStartPos, long nWidth, const OUString& rChar,
- const SvxFont& rFont, sal_Int32 nPara, sal_Int32 nIndex, sal_uInt8 nRightToLeft,
+ const SvxFont& rFont, sal_uInt8 nRightToLeft,
bool bEndOfLine,
bool bEndOfParagraph,
const Color& rOverlineColor,
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 039af4136e7e..719db0b26386 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -396,7 +396,6 @@ public:
const OUString maText;
sal_Int32 mnTextStart;
sal_Int32 mnTextLen;
- sal_Int32 mnPara;
const SvxFont& mrFont;
const long* mpDXArray;
@@ -424,7 +423,6 @@ public:
sal_Int32 nTxtStart,
sal_Int32 nTxtLen,
const SvxFont& rFnt,
- sal_Int32 nPar,
const long* pDXArr,
const EEngineData::WrongSpellVector* pWrongSpellVector,
const SvxFieldData* pFieldData,
@@ -441,7 +439,6 @@ public:
maText(rTxt),
mnTextStart(nTxtStart),
mnTextLen(nTxtLen),
- mnPara(nPar),
mrFont(rFnt),
mpDXArray(pDXArr),
mpWrongSpellVector(pWrongSpellVector),
@@ -835,7 +832,7 @@ public:
void DrawingText( const Point& rStartPos, const OUString& rText,
sal_Int32 nTextStart, sal_Int32 nTextLen,
const long* pDXArray, const SvxFont& rFont,
- sal_Int32 nPara, sal_uInt8 nRightToLeft,
+ sal_uInt8 nRightToLeft,
const EEngineData::WrongSpellVector* pWrongSpellVector,
const SvxFieldData* pFieldData,
bool bEndOfLine,
@@ -846,7 +843,7 @@ public:
const Color& rTextLineColor);
void DrawingTab( const Point& rStartPos, long nWidth, const OUString& rChar,
- const SvxFont& rFont, sal_Int32 nPara, sal_uInt8 nRightToLeft,
+ const SvxFont& rFont, sal_uInt8 nRightToLeft,
bool bEndOfLine,
bool bEndOfParagraph,
const Color& rOverlineColor,
diff --git a/include/editeng/svxrtf.hxx b/include/editeng/svxrtf.hxx
index ba597e0f31c1..a7c8d8095cef 100644
--- a/include/editeng/svxrtf.hxx
+++ b/include/editeng/svxrtf.hxx
@@ -202,7 +202,6 @@ class EDITENG_DLLPUBLIC SvxRTFParser : public SvRTFParser
css::uno::Reference< css::document::XDocumentProperties> m_xDocProps;
SfxItemSet *pRTFDefaults;
- long nVersionNo;
int nDfltFont;
bool bNewDoc : 1; // sal_False - Reading in an existing
diff --git a/include/svtools/wizardmachine.hxx b/include/svtools/wizardmachine.hxx
index 4c8159dcb20d..0203198bd8b6 100644
--- a/include/svtools/wizardmachine.hxx
+++ b/include/svtools/wizardmachine.hxx
@@ -93,12 +93,9 @@ namespace svt
//= OWizardPage
class OWizardMachine;
- struct WizardPageImplData;
class SVT_DLLPUBLIC OWizardPage : public TabPage, public IWizardPageController
{
- private:
- WizardPageImplData* m_pImpl;
public:
/** @param _pParent
diff --git a/include/svx/AccessibleShapeInfo.hxx b/include/svx/AccessibleShapeInfo.hxx
index a9ed3174bdf3..d81529e8de0f 100644
--- a/include/svx/AccessibleShapeInfo.hxx
+++ b/include/svx/AccessibleShapeInfo.hxx
@@ -60,13 +60,6 @@ public:
*/
IAccessibleParent* mpChildrenManager;
- /** This index is used to disambiguate names of accessible objects. A
- value of (the default) -1 leads to the use of the object's z-order
- instead. Because that is not a good substitute, better pass an ever
- increasing counter.
- */
- sal_Int32 mnIndex;
-
/** Copy the given values into the members described above.
*/
AccessibleShapeInfo (
@@ -74,8 +67,7 @@ public:
css::drawing::XShape>& rxShape,
const css::uno::Reference<
css::accessibility::XAccessible>& rxParent,
- IAccessibleParent* pChildrenManager,
- sal_Int32 nIndex = -1);
+ IAccessibleParent* pChildrenManager);
/** Copy the given values into the members described above.
The accessible parent implementation object is set to NULL.
@@ -84,8 +76,7 @@ public:
const css::uno::Reference<
css::drawing::XShape>& rxShape,
const css::uno::Reference<
- css::accessibility::XAccessible>& rxParent,
- sal_Int32 nIndex = -1);
+ css::accessibility::XAccessible>& rxParent);
~AccessibleShapeInfo();
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx
index e432c935d4be..a36d7b2c5ee3 100644
--- a/include/vcl/print.hxx
+++ b/include/vcl/print.hxx
@@ -59,17 +59,6 @@ enum PrinterSupport
};
-class VCL_DLLPUBLIC PrinterPage
-{
- GDIMetaFile* mpMtf;
-
-public:
-
- PrinterPage( GDIMetaFile* pMtf ) : mpMtf( pMtf ) {}
- ~PrinterPage() { delete mpMtf; }
-};
-
-
class VCL_DLLPUBLIC QueueInfo
{
friend class Printer;