[gnome-commander] Replaced deprecated gtk_entry_set_position() with gtk_editable_set_position()



commit 89dac37ee29414c0ab1982cbf63ff6c577c6337f
Author: Piotr Eljasiak <epiotr src gnome org>
Date:   Thu May 7 20:02:14 2009 +0200

    Replaced deprecated gtk_entry_set_position() with gtk_editable_set_position()
---
 ChangeLog                  |    5 +++++
 src/gnome-cmd-file-list.cc |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c6bfdc6..39f19da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-05-07  Piotr Eljasiak  <epiotr use pl>
+
+	* src/gnome-cmd-file-list.cc:
+	Replaced deprecated gtk_entry_set_position() with gtk_editable_set_position()
+
 2009-05-07  Christopher Zimmermann  <madroach zakweb de>
 
 	* src/gnome-cmd-data.cc:
diff --git a/src/gnome-cmd-file-list.cc b/src/gnome-cmd-file-list.cc
index f88d733..a1af922 100644
--- a/src/gnome-cmd-file-list.cc
+++ b/src/gnome-cmd-file-list.cc
@@ -1966,7 +1966,7 @@ void gnome_cmd_file_list_show_quicksearch (GnomeCmdFileList *fl, gchar c)
     {
         GnomeCmdQuicksearchPopup *popup = GNOME_CMD_QUICKSEARCH_POPUP (fl->priv->quicksearch_popup);
         gtk_entry_set_text (GTK_ENTRY (popup->entry), text);
-        gtk_entry_set_position (GTK_ENTRY (popup->entry), 1);
+        gtk_editable_set_position (GTK_EDITABLE (popup->entry), 1);
     }
 
     gtk_signal_connect (GTK_OBJECT (fl->priv->quicksearch_popup), "hide",



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]