comparison pidgin/gtkdialogs.c @ 20031:cd2b19529dff

whoops! do if 0, not ifdef 0
author Sean Egan <seanegan@gmail.com>
date Fri, 14 Sep 2007 08:40:06 +0000
parents bef95e866af8
children 6bf32c9e15a7 5051b94ad258
comparison
equal deleted inserted replaced
20029:51aff4db29da 20031:cd2b19529dff
363 logo = gtk_window_new(GTK_WINDOW_TOPLEVEL); 363 logo = gtk_window_new(GTK_WINDOW_TOPLEVEL);
364 gtk_widget_realize(logo); 364 gtk_widget_realize(logo);
365 filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "logo.png", NULL); 365 filename = g_build_filename(DATADIR, "pixmaps", "pidgin", "logo.png", NULL);
366 pixbuf = gdk_pixbuf_new_from_file(filename, NULL); 366 pixbuf = gdk_pixbuf_new_from_file(filename, NULL);
367 g_free(filename); 367 g_free(filename);
368 #ifdef 0 /* Don't versionize the logo when the logo has the version in it */ 368 #if 0 /* Don't versionize the logo when the logo has the version in it */
369 pidgin_logo_versionize(&pixbuf, logo); 369 pidgin_logo_versionize(&pixbuf, logo);
370 #endif 370 #endif
371 gtk_widget_destroy(logo); 371 gtk_widget_destroy(logo);
372 logo = gtk_image_new_from_pixbuf(pixbuf); 372 logo = gtk_image_new_from_pixbuf(pixbuf);
373 gdk_pixbuf_unref(pixbuf); 373 gdk_pixbuf_unref(pixbuf);