diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-04-27 05:42:07 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-04-27 05:42:07 +0800 |
commit | 84923b319cbaa0831ddeddf66771bc0ca58f73eb (patch) | |
tree | 6406dff8a9ba4cb7636a04f0d835644a5ef64edf /widgets | |
parent | 70e9e37d3ed3aad27fa972d0d304a51bf753b59d (diff) | |
download | gsoc2013-evolution-84923b319cbaa0831ddeddf66771bc0ca58f73eb.tar gsoc2013-evolution-84923b319cbaa0831ddeddf66771bc0ca58f73eb.tar.gz gsoc2013-evolution-84923b319cbaa0831ddeddf66771bc0ca58f73eb.tar.bz2 gsoc2013-evolution-84923b319cbaa0831ddeddf66771bc0ca58f73eb.tar.lz gsoc2013-evolution-84923b319cbaa0831ddeddf66771bc0ca58f73eb.tar.xz gsoc2013-evolution-84923b319cbaa0831ddeddf66771bc0ca58f73eb.tar.zst gsoc2013-evolution-84923b319cbaa0831ddeddf66771bc0ca58f73eb.zip |
Take an int instead of a double. From a patch by jody@ximian.com.
2002-04-26 Christopher James Lahey <clahey@ximian.com>
* e-table-field-chooser-item.c (etfci_maybe_start_drag): Take an
int instead of a double. From a patch by jody@ximian.com.
svn path=/trunk/; revision=16606
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/table/e-table-field-chooser-item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-field-chooser-item.c b/widgets/table/e-table-field-chooser-item.c index 676170d117..cf974d2327 100644 --- a/widgets/table/e-table-field-chooser-item.c +++ b/widgets/table/e-table-field-chooser-item.c @@ -503,7 +503,7 @@ etfci_point (GnomeCanvasItem *item, double x, double y, int cx, int cy, } static gboolean -etfci_maybe_start_drag (ETableFieldChooserItem *etfci, double x, double y) +etfci_maybe_start_drag (ETableFieldChooserItem *etfci, int x, int y) { if (!etfci->maybe_drag) return FALSE; |