aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--e-util/ChangeLog6
-rw-r--r--e-util/e-util.c39
-rw-r--r--e-util/e-util.h1
3 files changed, 6 insertions, 40 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 4c2e1d14d6..00e2a0aac1 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,9 @@
+2008-10-06 Sankar P <psankar@novell.com>
+
+ * widgets/table/e-cell-float.c:
+ * widgets/table/e-cell-float.h:
+ Remove obsolete function
+
2008-10-01 Milan Crha <mcrha@redhat.com>
** Fix for bug #554418
diff --git a/e-util/e-util.c b/e-util/e-util.c
index 97cd6265a6..2ce78ea0e2 100644
--- a/e-util/e-util.c
+++ b/e-util/e-util.c
@@ -420,45 +420,6 @@ do_format_number_as_float (gdouble number)
}
}
-gchar *
-e_format_number_float (gfloat number)
-{
- gfloat int_part;
- gint fraction;
- struct lconv *locality;
- gchar *str_intpart;
- gchar *decimal_point;
- gchar *str_fraction;
- gchar *value;
-
- locality = localeconv();
-
- int_part = floor (number);
- str_intpart = do_format_number_as_float ((gdouble) int_part);
-
- if (!strcmp(locality->mon_decimal_point, "")) {
- decimal_point = ".";
- }
- else {
- decimal_point = locality->mon_decimal_point;
- }
-
- fraction = (gint) ((number - int_part) * 100);
-
- if (fraction == 0) {
- str_fraction = g_strdup ("00");
- } else {
- str_fraction = g_strdup_printf ("%02d", fraction);
- }
-
- value = g_strconcat (str_intpart, decimal_point, str_fraction, NULL);
-
- g_free (str_intpart);
- g_free (str_fraction);
-
- return value;
-}
-
/* Perform a binary search for key in base which has nmemb elements
of size bytes each. The comparisons are done by (*compare)(). */
void
diff --git a/e-util/e-util.h b/e-util/e-util.h
index 78ec9e53c9..b6ff33429d 100644
--- a/e-util/e-util.h
+++ b/e-util/e-util.h
@@ -59,7 +59,6 @@ gboolean e_write_file_uri (const gchar *filename,
/* This only makes a filename safe for usage as a filename.
* It still may have shell meta-characters in it. */
gchar * e_format_number (gint number);
-gchar * e_format_number_float (gfloat number);
typedef gint (*ESortCompareFunc) (gconstpointer first,
gconstpointer second,