gnumeric r16405 - trunk/plugins/openoffice
- From: mortenw svn gnome org
- To: svn-commits-list gnome org
- Subject: gnumeric r16405 - trunk/plugins/openoffice
- Date: Sun, 24 Feb 2008 16:53:48 +0000 (GMT)
Author: mortenw
Date: Sun Feb 24 16:53:48 2008
New Revision: 16405
URL: http://svn.gnome.org/viewvc/gnumeric?rev=16405&view=rev
Log:
2008-02-24 Morten Welinder <terra gnome org>
* openoffice-read.c (oo_parse_border): Use g_strndup instead of
doing it by hand.
Modified:
trunk/plugins/openoffice/ChangeLog
trunk/plugins/openoffice/openoffice-read.c
Modified: trunk/plugins/openoffice/openoffice-read.c
==============================================================================
--- trunk/plugins/openoffice/openoffice-read.c (original)
+++ trunk/plugins/openoffice/openoffice-read.c Sun Feb 24 16:53:48 2008
@@ -1394,9 +1394,7 @@
char const *end = oo_parse_distance (xin, str, "border", &pts);
GnmBorder *border = NULL;
GnmColor *color = NULL;
- char *border_color = NULL;
- char *border_type = NULL;
- size_t pos = 0;
+ const char *border_color = NULL;
GnmStyleBorderType border_style;
GnmStyleBorderLocation const loc =
GNM_STYLE_BORDER_TOP + (int)(location - MSTYLE_BORDER_TOP);
@@ -1405,13 +1403,10 @@
return;
if (*end == ' ')
end++;
-/* "0.035cm solid #000000" */
+ /* "0.035cm solid #000000" */
border_color = strchr (end, '#');
if (border_color) {
- pos = strlen (end) - strlen (border_color);
- border_type = (char *)malloc(pos);
- memset (border_type, '\0', pos);
- strncpy (border_type, end, pos-1);
+ char *border_type = g_strndup (end, border_color - end);
color = oo_parse_color (xin, CC2XML (border_color), "color");
if (!strcmp ("solid", border_type)) {
@@ -1425,10 +1420,10 @@
border_style = GNM_STYLE_BORDER_DOUBLE;
border = gnm_style_border_fetch (border_style, color,
- gnm_style_border_get_orientation (loc));
+ gnm_style_border_get_orientation (loc));
border->width = pts;
gnm_style_set_border (style, location, border);
- free (border_type);
+ g_free (border_type);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]