diff options
author | Marco Pesenti Gritti <marco@.gnome.org> | 2003-08-14 03:52:22 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-08-14 03:52:22 +0800 |
commit | cecaa8f6550a2530136424b6a37a7daf021d475e (patch) | |
tree | 52250e69a25e5bf5bb1aea90a1e5dcacbd7b033a /embed/mozilla/EphyWrapper.cpp | |
parent | a85acf972a5cfa1b6cff927de2c74130d29928e2 (diff) | |
download | gsoc2013-epiphany-cecaa8f6550a2530136424b6a37a7daf021d475e.tar gsoc2013-epiphany-cecaa8f6550a2530136424b6a37a7daf021d475e.tar.gz gsoc2013-epiphany-cecaa8f6550a2530136424b6a37a7daf021d475e.tar.bz2 gsoc2013-epiphany-cecaa8f6550a2530136424b6a37a7daf021d475e.tar.lz gsoc2013-epiphany-cecaa8f6550a2530136424b6a37a7daf021d475e.tar.xz gsoc2013-epiphany-cecaa8f6550a2530136424b6a37a7daf021d475e.tar.zst gsoc2013-epiphany-cecaa8f6550a2530136424b6a37a7daf021d475e.zip |
Remove an unused progress listener. Looks like galeon 1 code ?!
2003-08-13 Marco Pesenti Gritti <marco@.gnome.org>
* embed/mozilla/EphyWrapper.cpp:
* embed/mozilla/Makefile.am:
* embed/mozilla/PrintProgressListener.cpp:
* embed/mozilla/PrintProgressListener.h:
Remove an unused progress listener. Looks like
galeon 1 code ?!
Diffstat (limited to 'embed/mozilla/EphyWrapper.cpp')
-rw-r--r-- | embed/mozilla/EphyWrapper.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/embed/mozilla/EphyWrapper.cpp b/embed/mozilla/EphyWrapper.cpp index fc306898b..3b9856716 100644 --- a/embed/mozilla/EphyWrapper.cpp +++ b/embed/mozilla/EphyWrapper.cpp @@ -19,7 +19,6 @@ #include "EphyWrapper.h" #include "GlobalHistory.h" #include "ProgressListener.h" -#include "PrintProgressListener.h" #include "ephy-embed.h" #include "ephy-string.h" @@ -193,8 +192,7 @@ nsresult EphyWrapper::Print (nsIPrintSettings *options, PRBool preview) if (!preview) { - GPrintListener *listener = new GPrintListener(); - result = print->Print (options, listener); + result = print->Print (options, nsnull); } else { |