diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-24 21:36:11 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-24 21:36:11 +0800 |
commit | ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7 (patch) | |
tree | 120de4351930340c6b90e7824bd270abdfe4b3b1 /widgets/table | |
parent | 60f56fbbff66bfaf67c91662828985de1f8b718a (diff) | |
download | gsoc2013-evolution-ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7.tar gsoc2013-evolution-ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7.tar.gz gsoc2013-evolution-ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7.tar.bz2 gsoc2013-evolution-ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7.tar.lz gsoc2013-evolution-ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7.tar.xz gsoc2013-evolution-ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7.tar.zst gsoc2013-evolution-ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7.zip |
Made the tooltip show up in the correct place and configuration when using
2000-04-24 Christopher James Lahey <clahey@helixcode.com>
* widgets/e-text/e-text.c: Made the tooltip show up in the correct
place and configuration when using the "max_lines", "anchor"
(untested), or "justification" arguments.
From a patch by Iain Holmes <ih@csd.abdn.ac.uk>
* widgets/e-text/e-text-event-processor-emacs-like.c,
widget/e-text/e-text-event-processor-types.h,
widgets/e-text/e-text.c, widgets/e-text/e-text.h: Changed C-w and
C-y to control the X clipboard. Added double and triple click
events.
From widgets/e-table/:
2000-04-24 Christopher James Lahey <clahey@helixcode.com>
* e-table.c: Fixed some warnings.
svn path=/trunk/; revision=2581
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index 7a0d725a97..bddf572fb9 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -770,7 +770,6 @@ et_real_construct (ETable *e_table, ETableHeader *full_header, ETableModel *etm, xmlNode *xmlGrouping; GtkWidget *scrolledwindow; - GtkWidget *vbox; e_table->full_header = full_header; gtk_object_ref (GTK_OBJECT (full_header)); @@ -803,7 +802,7 @@ et_real_construct (ETable *e_table, ETableHeader *full_header, ETableModel *etm, GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); - gtk_container_add (GTK_CONTAINER (scrolledwindow), e_table->table_canvas); + gtk_container_add (GTK_CONTAINER (scrolledwindow), GTK_WIDGET(e_table->table_canvas)); gtk_widget_show (scrolledwindow); /* |