summaryrefslogtreecommitdiff
path: root/drawinglayer
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer')
-rw-r--r--drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx4
-rw-r--r--drawinglayer/source/tools/converters.cxx6
2 files changed, 5 insertions, 5 deletions
diff --git a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
index 4c8df82cf393..fb4402b4a7cd 100644
--- a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
@@ -728,7 +728,7 @@ namespace drawinglayer
Adding support...
OOps, the necessary helper stuff is in svx/source/form/formpdxexport.cxx in namespace
svxform. Have to talk to FS if this has to be like that. Especially since
- ::vcl::PDFWriter::AnyWidget is filled out, which is already part of vcl.
+ vcl::PDFWriter::AnyWidget is filled out, which is already part of vcl.
Wrote an eMail to FS, he is on vacation currently. I see no reason why not to move
that stuff to somewhere else, maybe tools or svtools ?!? We will see...
Moved to toolkit, so i have to link against it. I tried VCL first, but it did
@@ -901,7 +901,7 @@ namespace drawinglayer
// PDF export. Emulate data handling from UnoControlPDFExportContact
// I have now moved describePDFControl to toolkit, thus i can implement the PDF
// form control support now as follows
- ::std::unique_ptr< ::vcl::PDFWriter::AnyWidget > pPDFControl(
+ ::std::unique_ptr< vcl::PDFWriter::AnyWidget > pPDFControl(
::toolkitform::describePDFControl( rXControl, *mpPDFExtOutDevData ) );
if(pPDFControl.get())
diff --git a/drawinglayer/source/tools/converters.cxx b/drawinglayer/source/tools/converters.cxx
index 2dd3d9d8d2ee..7f0af9ed3bc3 100644
--- a/drawinglayer/source/tools/converters.cxx
+++ b/drawinglayer/source/tools/converters.cxx
@@ -103,7 +103,7 @@ namespace drawinglayer
if(bDoSaveForVisualControl)
{
SvFileStream aNew(OUString("c:\\test_content.png"), StreamMode::WRITE|StreamMode::TRUNC);
- ::vcl::PNGWriter aPNGWriter(aContent);
+ vcl::PNGWriter aPNGWriter(aContent);
aPNGWriter.Write(aNew);
}
#endif
@@ -133,7 +133,7 @@ namespace drawinglayer
if(bDoSaveForVisualControl)
{
SvFileStream aNew(OUString("c:\\test_alpha.png"), StreamMode::WRITE|StreamMode::TRUNC);
- ::vcl::PNGWriter aPNGWriter(aAlpha);
+ vcl::PNGWriter aPNGWriter(aAlpha);
aPNGWriter.Write(aNew);
}
#endif
@@ -144,7 +144,7 @@ namespace drawinglayer
if(bDoSaveForVisualControl)
{
SvFileStream aNew(OUString("c:\\test_combined.png"), StreamMode::WRITE|StreamMode::TRUNC);
- ::vcl::PNGWriter aPNGWriter(aRetval);
+ vcl::PNGWriter aPNGWriter(aRetval);
aPNGWriter.Write(aNew);
}
#endif