From f3d7c26de1f575a14017a161ad1fdd2b93385e03 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 26 Sep 2009 18:36:04 +0000 Subject: removed qexc; non-compatible ABI change git-svn-id: svn+q:///qpdf/trunk@709 71b93d88-0707-0410-a8cf-f5a4172ac649 --- libtests/png_filter.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libtests/png_filter.cc') diff --git a/libtests/png_filter.cc b/libtests/png_filter.cc index a4b8a110..b735f338 100644 --- a/libtests/png_filter.cc +++ b/libtests/png_filter.cc @@ -1,4 +1,3 @@ - #include #include @@ -79,9 +78,9 @@ int main(int argc, char* argv[]) { run(filename, encode, columns); } - catch (QEXC::General& e) + catch (std::exception& e) { - std::cout << e.unparse() << std::endl; + std::cout << e.what() << std::endl; } return 0; } -- cgit v1.2.3-54-g00ecf