diff options
author | Albert Astals Cid <aacid@kde.org> | 2005-12-03 22:39:06 +0000 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2005-12-03 22:39:06 +0000 |
commit | df45483f1437d8a96519e1428d1f4b3ffc08c2cd (patch) | |
tree | b3e2324cc0d23e0c0eb27db64e08167e74ef6f04 /test | |
parent | 7dfe02ee112dee51346525b62d877e6591135761 (diff) |
remove another chagne should not have gone in
Diffstat (limited to 'test')
-rw-r--r-- | test/pdf-inspector.cc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/pdf-inspector.cc b/test/pdf-inspector.cc index ac2fa305..6e205500 100644 --- a/test/pdf-inspector.cc +++ b/test/pdf-inspector.cc @@ -30,7 +30,6 @@ #include "PDFDoc.h" #include "GlobalParams.h" -#include "SplashOutputDev.h" #include "ErrorCodes.h" #include <gtk/gtk.h> #include <glade/glade.h> @@ -67,7 +66,7 @@ private: GladeXML *xml; GtkTreeModel *model; PDFDoc *doc; - SplashOutputDev *output; + CairoOutputDev *output; }; @@ -129,11 +128,7 @@ PdfInspector::PdfInspector(void) gtk_tree_view_column_set_sort_column_id (column, i); } doc = NULL; - SplashColor white; - white[0] = 255; - white[1] = 255; - white[2] = 255; - output = new SplashOutputDev(splashModeRGB8, 4, gFalse, white); + output = new CairoOutputDev(); // set up initial widgets load (NULL); |