summaryrefslogtreecommitdiffstats
path: root/src/extension
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-08-29 15:27:45 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-08-29 15:27:45 +0000
commit5c619be71bf67cac4e582fa2b58bdd17c5f6928d (patch)
tree02340478c9caf5b39102d022b83da78136ad3d3a /src/extension
parentReverted po files to master branch, now the diff of launchpad is more usable (diff)
parentUpdating outdated test. Fixes bug #1202271. (diff)
downloadinkscape-5c619be71bf67cac4e582fa2b58bdd17c5f6928d.tar.gz
inkscape-5c619be71bf67cac4e582fa2b58bdd17c5f6928d.zip
update to trunk
(bzr r11950.1.137)
Diffstat (limited to 'src/extension')
-rw-r--r--src/extension/internal/emf-win32-print.cpp12
-rw-r--r--src/extension/internal/emf-win32-print.h7
2 files changed, 0 insertions, 19 deletions
diff --git a/src/extension/internal/emf-win32-print.cpp b/src/extension/internal/emf-win32-print.cpp
index 621954f68..92f564078 100644
--- a/src/extension/internal/emf-win32-print.cpp
+++ b/src/extension/internal/emf-win32-print.cpp
@@ -910,18 +910,6 @@ void PrintEmfWin32::init (void)
return;
}
-unsigned int PrintEmfWin32::image(Inkscape::Extension::Print * /* module */, /** not used */
- unsigned char *px, /** array of pixel values, Gdk::Pixbuf bitmap format */
- unsigned int /*w*/, /** width of bitmap */
- unsigned int /*h*/, /** height of bitmap */
- unsigned int /*rs*/, /** row stride (normally w*4) */
- Geom::Affine const & /*tf_ignore*/, /** WRONG affine transform, use the one from m_tr_stack */
- SPStyle const * /*style*/) /** provides indirect link to image object */
-{
- free(px);
- return 0;
-}
-
} /* namespace Internal */
} /* namespace Extension */
} /* namespace Inkscape */
diff --git a/src/extension/internal/emf-win32-print.h b/src/extension/internal/emf-win32-print.h
index e7bd08477..bbeeeb051 100644
--- a/src/extension/internal/emf-win32-print.h
+++ b/src/extension/internal/emf-win32-print.h
@@ -50,13 +50,6 @@ class PrintEmfWin32 : public Inkscape::Extension::Implementation::Implementation
unsigned int print_pathv (Geom::PathVector const &pathv, const Geom::Affine &transform);
bool print_simple_shape (Geom::PathVector const &pathv, const Geom::Affine &transform);
- unsigned int image(Inkscape::Extension::Print * /* module */, /** not used */
- unsigned char *px, /** array of pixel values, Gdk::Pixbuf bitmap format */
- unsigned int w, /** width of bitmap */
- unsigned int h, /** height of bitmap */
- unsigned int rs, /** row stride (normally w*4) */
- Geom::Affine const &tf_ignore, /** WRONG affine transform, use the one from m_tr_stack */
- SPStyle const *style); /** provides indirect link to image object */
public:
PrintEmfWin32 (void);