Revision: 2308
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=2308&view=rev
Author: tmzullinger
Date: 2009-04-12 22:22:08 +0000 (Sun, 12 Apr 2009)
Log Message:
-----------
Fix entry widget names for Create Repository window
The names were changed to fix issues caused during the glade file
conversion to glade3, in svn revision 2126
Revision Links:
--------------
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=2126&view=rev
Modified Paths:
--------------
gtkpod/trunk/ChangeLog
gtkpod/trunk/src/repository.c
Modified: gtkpod/trunk/ChangeLog
===================================================================
--- gtkpod/trunk/ChangeLog 2009-04-05 15:46:01 UTC (rev 2307)
+++ gtkpod/trunk/ChangeLog 2009-04-12 22:22:08 UTC (rev 2308)
@@ -1,3 +1,10 @@
+2009-04-12 Todd Zullinger <[email protected]>
+
+ * src/repository.c: Fix entry widget names for Create
+ Repository window. The names were changed to fix issues
+ caused during the glade file conversion to glade3, in svn
+ revision 2126
+
2009-03-17 Todd Zullinger <tmzullinger at users.sourceforge.net>
* src/mp3file.c:
Modified: gtkpod/trunk/src/repository.c
===================================================================
--- gtkpod/trunk/src/repository.c 2009-04-05 15:46:01 UTC (rev 2307)
+++ gtkpod/trunk/src/repository.c 2009-04-12 22:22:08 UTC (rev 2308)
@@ -2368,7 +2368,7 @@
g_return_if_fail (cr);
old_dir = gtk_entry_get_text (
- GTK_ENTRY (GET_WIDGET (MOUNTPOINT_ENTRY)));
+ GTK_ENTRY (GET_WIDGET (CRW_MOUNTPOINT_ENTRY)));
new_dir = fileselection_get_file_or_dir (
_("Select mountpoint"),
@@ -2377,7 +2377,7 @@
if (new_dir)
{
- gtk_entry_set_text (GTK_ENTRY (GET_WIDGET (MOUNTPOINT_ENTRY)),
+ gtk_entry_set_text (GTK_ENTRY (GET_WIDGET (CRW_MOUNTPOINT_ENTRY)),
new_dir);
g_free (new_dir);
}
@@ -2394,7 +2394,7 @@
g_return_if_fail (cr);
old_backup = gtk_entry_get_text (
- GTK_ENTRY (GET_WIDGET (BACKUP_ENTRY)));
+ GTK_ENTRY (GET_WIDGET (CRW_BACKUP_ENTRY)));
new_backup = fileselection_get_file_or_dir (
_("Set backup file"),
@@ -2403,7 +2403,7 @@
if (new_backup)
{
- gtk_entry_set_text (GTK_ENTRY (GET_WIDGET (BACKUP_ENTRY)),
+ gtk_entry_set_text (GTK_ENTRY (GET_WIDGET (CRW_BACKUP_ENTRY)),
new_backup);
g_free (new_backup);
}
@@ -2422,7 +2422,7 @@
g_return_if_fail (cr);
old_path = gtk_entry_get_text (
- GTK_ENTRY (GET_WIDGET (LOCAL_PATH_ENTRY)));
+ GTK_ENTRY (GET_WIDGET (CRW_LOCAL_PATH_ENTRY)));
new_path = fileselection_get_file_or_dir (
_("Set local repository file"),
@@ -2431,7 +2431,7 @@
if (new_path)
{
- gtk_entry_set_text (GTK_ENTRY (GET_WIDGET (LOCAL_PATH_ENTRY)),
+ gtk_entry_set_text (GTK_ENTRY (GET_WIDGET (CRW_LOCAL_PATH_ENTRY)),
new_path);
g_free (new_path);
}
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2