[Xfce4-commits] r25688 - in mousepad/branches/nick_0_3: . mousepad
Nick Schermer
nick at xfce.org
Tue May 8 19:17:37 CEST 2007
Author: nick
Date: 2007-05-08 17:17:37 +0000 (Tue, 08 May 2007)
New Revision: 25688
Modified:
mousepad/branches/nick_0_3/ChangeLog
mousepad/branches/nick_0_3/mousepad/mousepad-window.c
Log:
* mousepad/mousepad-window.c: Rename function so it matches
the standard mousepad_window_* names.
Modified: mousepad/branches/nick_0_3/ChangeLog
===================================================================
--- mousepad/branches/nick_0_3/ChangeLog 2007-05-08 17:14:34 UTC (rev 25687)
+++ mousepad/branches/nick_0_3/ChangeLog 2007-05-08 17:17:37 UTC (rev 25688)
@@ -1,4 +1,9 @@
2007-05-08 Nick Schermer <nick at xfce.org>
+ * mousepad/mousepad-window.c: Rename function so it matches
+ the standard mousepad_window_* names.
+
+
+2007-05-08 Nick Schermer <nick at xfce.org>
* mousepad/mousepad-window.c: Open a new tab when the notebook
is double clicked. Also fix some indentation.
Modified: mousepad/branches/nick_0_3/mousepad/mousepad-window.c
===================================================================
--- mousepad/branches/nick_0_3/mousepad/mousepad-window.c 2007-05-08 17:14:34 UTC (rev 25687)
+++ mousepad/branches/nick_0_3/mousepad/mousepad-window.c 2007-05-08 17:17:37 UTC (rev 25688)
@@ -116,7 +116,7 @@
gint *y,
gboolean *push_in,
gpointer user_data);
-static gboolean mousepad_notebook_button_press_event (GtkNotebook *notebook,
+static gboolean mousepad_window_notebook_button_press_event (GtkNotebook *notebook,
GdkEventButton *event,
MousepadWindow *window);
@@ -560,7 +560,7 @@
g_signal_connect (G_OBJECT (window->notebook), "page-reordered", G_CALLBACK (mousepad_window_page_reordered), window);
g_signal_connect (G_OBJECT (window->notebook), "page-added", G_CALLBACK (mousepad_window_page_added), window);
g_signal_connect (G_OBJECT (window->notebook), "page-removed", G_CALLBACK (mousepad_window_page_removed), window);
- g_signal_connect (G_OBJECT (window->notebook), "button-press-event", G_CALLBACK (mousepad_notebook_button_press_event), window);
+ g_signal_connect (G_OBJECT (window->notebook), "button-press-event", G_CALLBACK (mousepad_window_notebook_button_press_event), window);
/* append and show the notebook */
gtk_table_attach (GTK_TABLE (window->table), window->notebook, 0, 1, 3, 4, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
@@ -1350,9 +1350,9 @@
static gboolean
-mousepad_notebook_button_press_event (GtkNotebook *notebook,
- GdkEventButton *event,
- MousepadWindow *window)
+mousepad_window_notebook_button_press_event (GtkNotebook *notebook,
+ GdkEventButton *event,
+ MousepadWindow *window)
{
GtkWidget *page, *label;
GtkWidget *menu;
More information about the Xfce4-commits
mailing list