summaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-09-05 04:07:32 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-09-05 04:07:32 +0800
commit9db99776785814eb9b2142e630249e1ae066c247 (patch)
tree648e6641a27a0c6aacac9022d14b441951c6a3ea /math
parent9d5cfdfadf36e7f4cfb0bdb5111716ad038682f7 (diff)
downloadmarcuscom-ports-9db99776785814eb9b2142e630249e1ae066c247.tar
marcuscom-ports-9db99776785814eb9b2142e630249e1ae066c247.tar.gz
marcuscom-ports-9db99776785814eb9b2142e630249e1ae066c247.tar.bz2
marcuscom-ports-9db99776785814eb9b2142e630249e1ae066c247.tar.lz
marcuscom-ports-9db99776785814eb9b2142e630249e1ae066c247.tar.xz
marcuscom-ports-9db99776785814eb9b2142e630249e1ae066c247.tar.zst
marcuscom-ports-9db99776785814eb9b2142e630249e1ae066c247.zip
Attempt to fix the build with GCC 3.4.2.
Reported by: adamw Obtained from: Gnumeric CVS git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2769 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'math')
-rw-r--r--math/gnumeric2/files/patch-src_commands.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/math/gnumeric2/files/patch-src_commands.c b/math/gnumeric2/files/patch-src_commands.c
new file mode 100644
index 000000000..9f9ed29b1
--- /dev/null
+++ b/math/gnumeric2/files/patch-src_commands.c
@@ -0,0 +1,22 @@
+--- src/commands.c.orig Sat Sep 4 16:07:54 2004
++++ src/commands.c Sat Sep 4 16:09:28 2004
+@@ -3634,6 +3634,11 @@
+ } CmdMergeCells;
+
+ static void
++cmd_merge_cells_repeat (GnmCommand const *cmd, WorkbookControl *wbc);
++
++MAKE_GNM_COMMAND (CmdMergeCells, cmd_merge_cells, cmd_merge_cells_repeat);
++
++static void
+ cmd_merge_cells_repeat (GnmCommand const *cmd, WorkbookControl *wbc)
+ {
+ SheetView *sv = wb_control_cur_sheet_view (wbc);
+@@ -3642,7 +3647,6 @@
+ CMD_MERGE_CELLS (cmd)->center);
+ range_fragment_free (range_list);
+ }
+-MAKE_GNM_COMMAND (CmdMergeCells, cmd_merge_cells, cmd_merge_cells_repeat);
+
+ static gboolean
+ cmd_merge_cells_undo (GnmCommand *cmd, WorkbookControl *wbc)