diff options
author | Murray Cumming <murrayc@murrayc.com> | 2006-01-27 19:01:12 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2006-01-27 19:01:12 +0000 |
commit | 51decc123b2234d30b629eb0ff8685562c89959f (patch) | |
tree | 0488b4ce8e34c075b1d1c76b9c9f22e4a8436561 /examples | |
parent | 56dd0a259ca3e51ad0b439d702fe25643117f0cb (diff) |
Increase version.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ps-surface/main.cc | 2 | ||||
-rw-r--r-- | examples/svg-surface/main.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/ps-surface/main.cc b/examples/ps-surface/main.cc index 5b2f35f..2d4fc7f 100644 --- a/examples/ps-surface/main.cc +++ b/examples/ps-surface/main.cc @@ -45,7 +45,7 @@ int main(int argc, char** argv) #else - std::cout << "You must compile cairo with PDF support for this example to work." + std::cout << "You must compile cairo with PS (Postscript) support for this example to work." << std::endl; return 1; diff --git a/examples/svg-surface/main.cc b/examples/svg-surface/main.cc index e63d7ad..2732f5e 100644 --- a/examples/svg-surface/main.cc +++ b/examples/svg-surface/main.cc @@ -40,12 +40,12 @@ int main(int argc, char** argv) cr->show_page(); - std::cout << "Wrote PostScript file \"" << filename << "\"" << std::endl; + std::cout << "Wrote SVG file \"" << filename << "\"" << std::endl; return 0; #else - std::cout << "You must compile cairo with PDF support for this example to work." + std::cout << "You must compile cairo with SVG support for this example to work." << std::endl; return 1; |