gnome-commander r1928 - in branches/gcmd-1-3: . src



Author: epiotr
Date: Fri Aug  1 18:07:18 2008
New Revision: 1928
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=1928&view=rev

Log:
Removal of GnomeCmdDirPool class, as it is not completed and functional

Modified:
   branches/gcmd-1-3/ChangeLog
   branches/gcmd-1-3/src/Makefile.am
   branches/gcmd-1-3/src/gnome-cmd-con.cc
   branches/gcmd-1-3/src/gnome-cmd-con.h
   branches/gcmd-1-3/src/gnome-cmd-dir.cc

Modified: branches/gcmd-1-3/src/Makefile.am
==============================================================================
--- branches/gcmd-1-3/src/Makefile.am	(original)
+++ branches/gcmd-1-3/src/Makefile.am	Fri Aug  1 18:07:18 2008
@@ -41,7 +41,6 @@
 	gnome-cmd-data.h gnome-cmd-data.cc \
 	gnome-cmd-delete-dialog.h gnome-cmd-delete-dialog.cc \
 	gnome-cmd-dir-indicator.h gnome-cmd-dir-indicator.cc \
-	gnome-cmd-dir-pool.h gnome-cmd-dir-pool.cc \
 	gnome-cmd-dir.h gnome-cmd-dir.cc \
 	gnome-cmd-file-collection.h gnome-cmd-file-collection.cc \
 	gnome-cmd-file-list.h gnome-cmd-file-list.cc \

Modified: branches/gcmd-1-3/src/gnome-cmd-con.cc
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-con.cc	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-con.cc	Fri Aug  1 18:07:18 2008
@@ -34,7 +34,6 @@
     GnomeCmdDir    *default_dir;   // the start dir of this connection
     History        *dir_history;
     GnomeCmdBookmarkGroup *bookmarks;
-    GnomeCmdDirPool *dir_pool;
     GList          *all_dirs;
     GHashTable     *all_dirs_map;
 };
@@ -202,7 +201,6 @@
     con->priv->cwd = NULL;
     con->priv->default_dir = NULL;
     con->priv->dir_history = history_new (20);
-    con->priv->dir_pool = gnome_cmd_dir_pool_new ();
     con->priv->bookmarks = g_new0 (GnomeCmdBookmarkGroup, 1);
     con->priv->bookmarks->con = con;
     // con->priv->bookmarks->bookmarks = NULL;
@@ -441,14 +439,6 @@
 }
 
 
-GnomeCmdDirPool *gnome_cmd_con_get_dir_pool (GnomeCmdCon *con)
-{
-    g_return_val_if_fail (GNOME_CMD_IS_CON (con), NULL);
-
-    return con->priv->dir_pool;
-}
-
-
 void gnome_cmd_con_updated (GnomeCmdCon *con)
 {
     g_return_if_fail (GNOME_CMD_IS_CON (con));

Modified: branches/gcmd-1-3/src/gnome-cmd-con.h
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-con.h	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-con.h	Fri Aug  1 18:07:18 2008
@@ -317,8 +317,6 @@
 
 void gnome_cmd_con_set_bookmarks (GnomeCmdCon *con, GnomeCmdBookmarkGroup *bookmarks);
 
-GnomeCmdDirPool *gnome_cmd_con_get_dir_pool (GnomeCmdCon *con);
-
 void gnome_cmd_con_updated (GnomeCmdCon *con);
 
 GnomeVFSResult gnome_cmd_con_get_path_target_type (GnomeCmdCon *con, const gchar *path, GnomeVFSFileType *type);

Modified: branches/gcmd-1-3/src/gnome-cmd-dir.cc
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-dir.cc	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-dir.cc	Fri Aug  1 18:07:18 2008
@@ -118,8 +118,6 @@
     if (dir->priv->path)
         gtk_object_unref (GTK_OBJECT (dir->priv->path));
 
-    gnome_cmd_con_get_dir_pool (dir->priv->con)->remove (dir);
-
     dir->priv->handle->ref = NULL;
     handle_unref (dir->priv->handle);
 



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