diff options
Diffstat (limited to 'printing')
-rw-r--r-- | printing/printed_document.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/printing/printed_document.cc b/printing/printed_document.cc index 0360b5b..56a340f 100644 --- a/printing/printed_document.cc +++ b/printing/printed_document.cc @@ -251,9 +251,9 @@ void PrintedDocument::DebugDump(const PrintedPage& page) { filename += ASCIIToUTF16("_.emf"); #if defined(OS_WIN) page.native_metafile()->SaveTo( - g_debug_dump_info.Get().debug_dump_path.Append(filename).ToWStringHack()); + g_debug_dump_info.Get().debug_dump_path.Append(filename).value()); #else // OS_WIN - NOTIMPLEMENTED(); + NOTIMPLEMENTED(); // TODO: convert SaveTo to accept a FilePath #endif // OS_WIN } |