Kaydet (Commit) 9b30c36e authored tarafından Julien Nabet's avatar Julien Nabet

Some vcl cleaning

üst 715138f3
......@@ -767,8 +767,6 @@ psp::PrinterGfx::DrawMask(Rectangle const&, Rectangle const&, psp::PrinterBmp co
psp::PrinterGfx::GetGlyphBoundRect(unsigned short, Rectangle&)
psp::PrinterGfx::GetGlyphOutline(unsigned short, unsigned short**, Point**, unsigned char**)
psp::PrinterGfx::GetResolution(int&, int&) const
psp::PrinterGfx::PSRMoveTo(int, int)
psp::PrinterGfx::SetFallbackFont(int)
sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
sd::ToolPanelPaneShell::RegisterInterface(SfxModule*)
......
......@@ -908,13 +908,6 @@ PrinterGfx::PSLineTo (const Point& rPoint)
PSPointOp (rPoint, "lineto");
}
void
PrinterGfx::PSRMoveTo (sal_Int32 nDx, sal_Int32 nDy)
{
Point aPoint(nDx, nDy);
PSPointOp (aPoint, "rmoveto");
}
/* get a compressed representation of the path information */
#define DEBUG_BINPATH 0
......
......@@ -139,13 +139,6 @@ PrinterGfx::SetFont(
return 0;
}
sal_uInt16
PrinterGfx::SetFallbackFont ( sal_Int32 nFontID )
{
mnFallbackID = nFontID;
return 0;
}
void PrinterGfx::drawGlyphs(
const Point& rPoint,
sal_uInt32* pGlyphIds,
......
......@@ -297,7 +297,6 @@ public:
void PSRotate (sal_Int32 nAngle);
void PSTranslate (const Point& rPoint);
void PSMoveTo (const Point& rPoint);
void PSRMoveTo (sal_Int32 nDx, sal_Int32 nDy = 0);
void PSScale (double fScaleX, double fScaleY);
void PSLineTo(const Point& rPoint );
void PSPointOp (const Point& rPoint, const sal_Char* pOperator);
......@@ -396,7 +395,6 @@ public:
bool bArtItalic,
bool bArtBold
);
sal_uInt16 SetFallbackFont ( sal_Int32 nFontID );
sal_Int32 GetFontAngle () const
{ return mnTextAngle; }
sal_Int32 GetFontID () const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment