From fd49f4844b983fb4846fcc03c842d5216655cc02 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Mon, 26 Apr 2010 13:27:27 +0000 Subject: [PATCH] * removed debug output git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36485 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/locale/Country.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/kits/locale/Country.cpp b/src/kits/locale/Country.cpp index 19d63f0e78..7892d6fc85 100644 --- a/src/kits/locale/Country.cpp +++ b/src/kits/locale/Country.cpp @@ -100,11 +100,9 @@ BCountry::GetIcon(BBitmap* result) size_t size; const char* code = fICULocale->getCountry(); if (code != NULL) { - printf("this is %s drawing\n",code); const void* buffer = storage.LoadResource(B_VECTOR_ICON_TYPE, code, &size); if (buffer != NULL && size != 0) { - puts(" icon found!"); return BIconUtils::GetVectorIcon(static_cast(buffer), size, result); }