diff options
author | nobody <nobody@localhost> | 2000-07-06 12:58:12 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-07-06 12:58:12 +0800 |
commit | 31c19f75b9e278da1c8d36022eb38935959e9623 (patch) | |
tree | 4ba00fa4856e39912c9a54ecba72de80d51d2418 /notes/test-notes.c | |
parent | 04f148f617112009091abd18b16463033dd322d0 (diff) | |
download | gsoc2013-evolution-NAUTILUS-SAFE.tar gsoc2013-evolution-NAUTILUS-SAFE.tar.gz gsoc2013-evolution-NAUTILUS-SAFE.tar.bz2 gsoc2013-evolution-NAUTILUS-SAFE.tar.lz gsoc2013-evolution-NAUTILUS-SAFE.tar.xz gsoc2013-evolution-NAUTILUS-SAFE.tar.zst gsoc2013-evolution-NAUTILUS-SAFE.zip |
This commit was manufactured by cvs2svn to create tagNAUTILUS-SAFE
'NAUTILUS-SAFE'.
svn path=/tags/NAUTILUS-SAFE/; revision=3914
Diffstat (limited to 'notes/test-notes.c')
-rw-r--r-- | notes/test-notes.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/notes/test-notes.c b/notes/test-notes.c deleted file mode 100644 index 8352ea789f..0000000000 --- a/notes/test-notes.c +++ /dev/null @@ -1,34 +0,0 @@ -/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ - -#include <config.h> -#include <gnome.h> -#include <gdk/gdkx.h> - -#include "e-util/e-canvas.h" -#include "widgets/e-text/e-text.h" - -#include "e-note.h" - -void -text_changed (GtkWidget *widget, gpointer data) -{ - g_print ("Text changed!\n"); -} - -gint -main (gint argc, gchar **argv) -{ - GtkWidget *note; - - gnome_init ("NotesTest", "0.0.1", argc, argv); - - note = e_note_new (); - e_note_set_text (E_NOTE (note), "This is a text note widget"); - gtk_signal_connect (GTK_OBJECT (note), "changed", - GTK_SIGNAL_FUNC (text_changed), NULL); - - gtk_widget_show (note); - gtk_main (); - - return 0; -} |