diff options
Diffstat (limited to '')
| -rw-r--r-- | src/ui/dialog/print.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/dialog/print.cpp b/src/ui/dialog/print.cpp index 3deb4204a..52ff07ee6 100644 --- a/src/ui/dialog/print.cpp +++ b/src/ui/dialog/print.cpp @@ -26,6 +26,7 @@ #include "unit-constants.h" #include "helper/png-write.h" #include "svg/svg-color.h" +#include "io/sys.h" static void @@ -46,7 +47,7 @@ draw_page (GtkPrintOperation */*operation*/, std::string tmp_base = "inkscape-print-png-XXXXXX"; int tmp_fd; - if ( (tmp_fd = Glib::file_open_tmp (tmp_png, tmp_base)) >= 0) { + if ( (tmp_fd = Inkscape::IO::file_open_tmp (tmp_png, tmp_base)) >= 0) { close(tmp_fd); guint32 bgcolor = 0x00000000; |
