diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-02-08 14:22:12 +0000 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-17 12:17:21 +0100 |
commit | f5aa8dcff1b6b537bdbca4648460b61dc9ea9c4b (patch) | |
tree | b3adfbdec57fb329a0f21231dd3ee36cda5f4cf6 | |
parent | 715a43e9eae6f34d5d13b9f863a8955e128c9e2a (diff) |
Corrected argument indentation from the s/source/store/g rename.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r-- | libempathy/empathy-log-store-pidgin.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/libempathy/empathy-log-store-pidgin.c b/libempathy/empathy-log-store-pidgin.c index 1800fe401..5a1fe3953 100644 --- a/libempathy/empathy-log-store-pidgin.c +++ b/libempathy/empathy-log-store-pidgin.c @@ -84,9 +84,9 @@ empathy_log_store_pidgin_init (EmpathyLogStorePidgin *self) static gchar * log_store_pidgin_get_dir (EmpathyLogStore *self, - McAccount *account, - const gchar *chat_id, - gboolean chatroom) + McAccount *account, + const gchar *chat_id, + gboolean chatroom) { const gchar *protocol; gchar *basedir; @@ -128,9 +128,9 @@ log_store_pidgin_get_dir (EmpathyLogStore *self, static gboolean log_store_pidgin_exists (EmpathyLogStore *self, - McAccount *account, - const gchar *chat_id, - gboolean chatroom) + McAccount *account, + const gchar *chat_id, + gboolean chatroom) { gchar *dir; gboolean exists; @@ -184,9 +184,9 @@ log_store_pidgin_get_time (const gchar *filename) static GList * log_store_pidgin_get_dates (EmpathyLogStore *self, - McAccount *account, - const gchar *chat_id, - gboolean chatroom) + McAccount *account, + const gchar *chat_id, + gboolean chatroom) { GList *dates = NULL; gchar *date; @@ -235,10 +235,10 @@ log_store_pidgin_get_dates (EmpathyLogStore *self, static gchar * log_store_pidgin_get_filename_for_date (EmpathyLogStore *self, - McAccount *account, - const gchar *chat_id, - gboolean chatroom, - const gchar *date) + McAccount *account, + const gchar *chat_id, + gboolean chatroom, + const gchar *date) { gchar *basedir; gchar *timestamp; @@ -291,7 +291,7 @@ log_store_pidgin_get_filename_for_date (EmpathyLogStore *self, static EmpathyLogSearchHit * log_store_pidgin_search_hit_new (EmpathyLogStore *self, - const gchar *filename) + const gchar *filename) { EmpathyLogSearchHit *hit; const gchar *username; @@ -361,7 +361,7 @@ log_store_pidgin_search_hit_new (EmpathyLogStore *self, static GList * log_store_pidgin_get_messages_for_file (EmpathyLogStore *self, - const gchar *filename) + const gchar *filename) { GList *messages = NULL; EmpathyLogSearchHit *hit; @@ -511,7 +511,7 @@ log_store_pidgin_get_messages_for_file (EmpathyLogStore *self, static GList * log_store_pidgin_get_all_files (EmpathyLogStore *self, - const gchar *dir) + const gchar *dir) { GDir *gdir; GList *files = NULL; @@ -614,8 +614,8 @@ log_store_pidgin_search_new (EmpathyLogStore *self, static GList * log_store_pidgin_get_chats_for_dir (EmpathyLogStore *self, - const gchar *dir, - gboolean is_chatroom) + const gchar *dir, + gboolean is_chatroom) { GDir *gdir; GList *hits = NULL; @@ -643,10 +643,10 @@ log_store_pidgin_get_chats_for_dir (EmpathyLogStore *self, static GList * log_store_pidgin_get_messages_for_date (EmpathyLogStore *self, - McAccount *account, - const gchar *chat_id, - gboolean chatroom, - const gchar *date) + McAccount *account, + const gchar *chat_id, + gboolean chatroom, + const gchar *date) { gchar *filename; GList *messages; @@ -691,7 +691,7 @@ log_store_pidgin_get_chats (EmpathyLogStore *self, static void log_store_iface_init (gpointer g_iface, - gpointer iface_data) + gpointer iface_data) { EmpathyLogStoreInterface *iface = (EmpathyLogStoreInterface *) g_iface; |