From 35cf9ee2503175e7d0352daac9149e260e1798fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Mon, 2 Jan 2006 01:05:42 +0000 Subject: [PATCH] remove left overs git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15779 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/PNGDump.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/servers/app/PNGDump.cpp b/src/servers/app/PNGDump.cpp index c20caf0d04..5058362c57 100644 --- a/src/servers/app/PNGDump.cpp +++ b/src/servers/app/PNGDump.cpp @@ -11,7 +11,6 @@ #include "PNGDump.h" -#include #include #include #include @@ -31,13 +30,10 @@ # define TRACE(x) ; #endif -using std::nothrow; - status_t SaveToPNG(const char* filename, const BRect& bounds, color_space space, const void* bits, int32 bitsLength, int32 bytesPerRow) { -bigtime_t now = system_time(); int32 width = bounds.IntegerWidth() + 1; int32 height = bounds.IntegerHeight() + 1; @@ -109,6 +105,5 @@ bigtime_t now = system_time(); png_destroy_write_struct(&png, NULL); fclose(file); -printf("PNG Dump: %lld\n", system_time() - now); return B_OK; }