[gnome-commander] noop: code cleanup
- From: Piotr Eljasiak <epiotr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander] noop: code cleanup
- Date: Sun, 4 Sep 2011 21:11:17 +0000 (UTC)
commit 901d655daa5bd83bb6d2327d75be41bab7e6e0a5
Author: Piotr Eljasiak <epiotr src gnome org>
Date: Sun Sep 4 22:56:56 2011 +0200
noop: code cleanup
src/gnome-cmd-con-list.cc | 12 ++++++------
src/gnome-cmd-con-list.h | 2 +-
2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/src/gnome-cmd-con-list.cc b/src/gnome-cmd-con-list.cc
index bafcbf1..747debc 100644
--- a/src/gnome-cmd-con-list.cc
+++ b/src/gnome-cmd-con-list.cc
@@ -412,17 +412,17 @@ GnomeCmdCon *gnome_cmd_con_list_find_alias (GnomeCmdConList *list, const gchar *
}
-GnomeCmdCon *gnome_cmd_con_list_get_home (GnomeCmdConList *con_list)
+GnomeCmdCon *gnome_cmd_con_list_get_home (GnomeCmdConList *list)
{
- g_return_val_if_fail (GNOME_CMD_IS_CON_LIST (con_list), NULL);
+ g_return_val_if_fail (GNOME_CMD_IS_CON_LIST (list), NULL);
- return con_list->priv->home_con;
+ return list->priv->home_con;
}
-GnomeCmdCon *gnome_cmd_con_list_get_smb (GnomeCmdConList *con_list)
+GnomeCmdCon *gnome_cmd_con_list_get_smb (GnomeCmdConList *list)
{
- g_return_val_if_fail (GNOME_CMD_IS_CON_LIST (con_list), NULL);
+ g_return_val_if_fail (GNOME_CMD_IS_CON_LIST (list), NULL);
- return con_list->priv->smb_con;
+ return list->priv->smb_con;
}
diff --git a/src/gnome-cmd-con-list.h b/src/gnome-cmd-con-list.h
index c51f91f..a1605a5 100644
--- a/src/gnome-cmd-con-list.h
+++ b/src/gnome-cmd-con-list.h
@@ -94,7 +94,7 @@ inline gboolean gnome_cmd_con_list_has_alias (GnomeCmdConList *list, const gchar
}
GnomeCmdCon *gnome_cmd_con_list_get_home (GnomeCmdConList *list);
-GnomeCmdCon *gnome_cmd_con_list_get_smb (GnomeCmdConList *con_list);
+GnomeCmdCon *gnome_cmd_con_list_get_smb (GnomeCmdConList *list);
inline GnomeCmdCon *get_home_con ()
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]