[haiku-commits] r36485 - haiku/trunk/src/kits/locale

  • From: zooey@xxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 26 Apr 2010 15:27:27 +0200 (CEST)

Author: zooey
Date: 2010-04-26 15:27:27 +0200 (Mon, 26 Apr 2010)
New Revision: 36485
Changeset: http://dev.haiku-os.org/changeset/36485/haiku

Modified:
   haiku/trunk/src/kits/locale/Country.cpp
Log:
* removed debug output

Modified: haiku/trunk/src/kits/locale/Country.cpp
===================================================================
--- haiku/trunk/src/kits/locale/Country.cpp     2010-04-26 11:37:32 UTC (rev 
36484)
+++ haiku/trunk/src/kits/locale/Country.cpp     2010-04-26 13:27:27 UTC (rev 
36485)
@@ -100,11 +100,9 @@
        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<const 
uint8*>(buffer),
                                size, result);
                }


Other related posts:

  • » [haiku-commits] r36485 - haiku/trunk/src/kits/locale - zooey