summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--printing/page_overlays.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/printing/page_overlays.cc b/printing/page_overlays.cc
index 946186d..e590490 100644
--- a/printing/page_overlays.cc
+++ b/printing/page_overlays.cc
@@ -137,6 +137,9 @@ std::wstring PageOverlays::ReplaceVariables(const std::wstring& input,
const PrintedDocument& document,
const PrintedPage& page) {
std::wstring output(input);
+// Prevent references to document.page_count() on Linux until
+// printed_document.cc is included in printing.gyp.
+#if !defined(OS_LINUX)
for (size_t offset = output.find(L'{', 0);
offset != std::wstring::npos;
offset = output.find(L'{', offset)) {
@@ -200,6 +203,7 @@ std::wstring PageOverlays::ReplaceVariables(const std::wstring& input,
++offset;
}
}
+#endif // !defined(OS_LINUX)
return output;
}