[evolution-kolab] KolabMailSummary: removed 'kolab_' prefix from names of static functions
- From: Christian Hilberg <chilberg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-kolab] KolabMailSummary: removed 'kolab_' prefix from names of static functions
- Date: Thu, 26 Jul 2012 14:08:00 +0000 (UTC)
commit 2e476424a0d11fb71742ddea07ee15cf5f586c1b
Author: Christian Hilberg <hilberg kernelconcepts de>
Date: Thu Jul 26 15:38:50 2012 +0200
KolabMailSummary: removed 'kolab_' prefix from names of static functions
src/libekolab/kolab-mail-summary.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/src/libekolab/kolab-mail-summary.c b/src/libekolab/kolab-mail-summary.c
index 749a618..7e6d6d4 100644
--- a/src/libekolab/kolab-mail-summary.c
+++ b/src/libekolab/kolab-mail-summary.c
@@ -33,9 +33,10 @@
#include "camel-kolab-imapx-metadata.h"
/*----------------------------------------------------------------------------*/
-/* local helpers */
+/* local statics */
+
static void
-kolab_mail_summary_util_e_cal_component_free_text (ECalComponentText *ect)
+mail_summary_util_e_cal_component_free_text (ECalComponentText *ect)
{
if (ect == NULL)
return;
@@ -43,7 +44,7 @@ kolab_mail_summary_util_e_cal_component_free_text (ECalComponentText *ect)
}
static void
-kolab_mail_summary_util_e_cal_component_free_organizer (ECalComponentOrganizer *eco)
+mail_summary_util_e_cal_component_free_organizer (ECalComponentOrganizer *eco)
{
if (eco == NULL)
return;
@@ -100,7 +101,7 @@ kolab_mail_summary_new_from_ecalcomponent (ECalComponent *ecalcomp)
kolab_mail_summary_set_char_field (summary,
KOLAB_MAIL_SUMMARY_CHAR_FIELD_E_SUMMARY,
g_strdup (ect->value));
- kolab_mail_summary_util_e_cal_component_free_text (ect);
+ mail_summary_util_e_cal_component_free_text (ect);
}
{ /* ORGANIZER */
@@ -109,7 +110,7 @@ kolab_mail_summary_new_from_ecalcomponent (ECalComponent *ecalcomp)
kolab_mail_summary_set_char_field (summary,
KOLAB_MAIL_SUMMARY_CHAR_FIELD_E_ORGANIZER,
g_strdup (eco->value));
- kolab_mail_summary_util_e_cal_component_free_organizer (eco);
+ mail_summary_util_e_cal_component_free_organizer (eco);
}
{ /* LOCATION */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]