aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell-text.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-10 07:27:45 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-10 07:27:45 +0800
commit09244eaf9e81a880ec7f9748805e6edce7f6516b (patch)
tree2bd7d1a3ba142f56204a5c2b3144fa6f957f862e /widgets/table/e-cell-text.c
parent3018f79188018eb590be1412a95b830a0d842fbc (diff)
downloadgsoc2013-evolution-09244eaf9e81a880ec7f9748805e6edce7f6516b.tar
gsoc2013-evolution-09244eaf9e81a880ec7f9748805e6edce7f6516b.tar.gz
gsoc2013-evolution-09244eaf9e81a880ec7f9748805e6edce7f6516b.tar.bz2
gsoc2013-evolution-09244eaf9e81a880ec7f9748805e6edce7f6516b.tar.lz
gsoc2013-evolution-09244eaf9e81a880ec7f9748805e6edce7f6516b.tar.xz
gsoc2013-evolution-09244eaf9e81a880ec7f9748805e6edce7f6516b.tar.zst
gsoc2013-evolution-09244eaf9e81a880ec7f9748805e6edce7f6516b.zip
cell should be edit cast to a CurrentCell, not data cast to a CurrentCell.
2000-12-09 Christopher James Lahey <clahey@helixcode.com> * e-cell-text.c (_blink_scroll_timeout): cell should be edit cast to a CurrentCell, not data cast to a CurrentCell. Fixed this. svn path=/trunk/; revision=6890
Diffstat (limited to 'widgets/table/e-cell-text.c')
-rw-r--r--widgets/table/e-cell-text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c
index 153501fa63..e007bf6f5e 100644
--- a/widgets/table/e-cell-text.c
+++ b/widgets/table/e-cell-text.c
@@ -1805,10 +1805,10 @@ _get_position_from_xy (CurrentCell *cell, gint x, gint y)
static gboolean
_blink_scroll_timeout (gpointer data)
{
- CurrentCell *cell = CURRENT_CELL(data);
ECellTextView *text_view = (ECellTextView *) data;
ECellText *ect = E_CELL_TEXT (((ECellView *)text_view)->ecell);
CellEdit *edit = text_view->edit;
+ CurrentCell *cell = CURRENT_CELL(edit);
ECellTextLineBreaks *linebreaks = cell->breaks;
gulong current_time;