[MPlayer-cvslog] r38488 - trunk/gui/dialog/fileselect.c

ib subversion at mplayerhq.hu
Tue Apr 30 11:44:46 EEST 2024


Author: ib
Date: Tue Apr 30 11:44:46 2024
New Revision: 38488

Log:
Rename variable.

This is purely cosmetic.

Modified:
   trunk/gui/dialog/fileselect.c

Modified: trunk/gui/dialog/fileselect.c
==============================================================================
--- trunk/gui/dialog/fileselect.c	Tue Apr 30 11:42:40 2024	(r38487)
+++ trunk/gui/dialog/fileselect.c	Tue Apr 30 11:44:46 2024	(r38488)
@@ -755,7 +755,7 @@ static GtkWidget *CreateFileSelect(void)
     GtkWidget *hbuttonbox3;
 
     GtkWidget *Up;
-    GdkPixbuf *uppixbuf;
+    GdkPixbuf *pixbuf;
 
     accel_group = gtk_accel_group_new();
 
@@ -788,9 +788,9 @@ static GtkWidget *CreateFileSelect(void)
     gtk_widget_show(vseparator1);
     gtk_box_pack_start(GTK_BOX(hbox4), vseparator1, FALSE, TRUE, 0);
 
-    uppixbuf = gdk_pixbuf_new_from_inline(-1, dir_up_png, FALSE, NULL);
-    Up       = gtk_image_new_from_pixbuf(uppixbuf);
-    g_object_unref(uppixbuf);
+    pixbuf = gdk_pixbuf_new_from_inline(-1, dir_up_png, FALSE, NULL);
+    Up     = gtk_image_new_from_pixbuf(pixbuf);
+    g_object_unref(pixbuf);
     gtk_widget_show(Up);
 
     fsUp = gtk_button_new();


More information about the MPlayer-cvslog mailing list