aboutsummaryrefslogtreecommitdiffstats
path: root/notes/test-notes.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-03-02 09:33:29 +0800
committernobody <nobody@localhost>2001-03-02 09:33:29 +0800
commit0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd (patch)
treecda39502324bf50b451e5c7f58e5dee7c7476bad /notes/test-notes.c
parent50ef074887b43f43dad3edb120d9abf30092c681 (diff)
downloadgsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.gz
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.bz2
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.lz
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.xz
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.tar.zst
gsoc2013-evolution-0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd.zip
This commit was manufactured by cvs2svn to create tagGNOME-VFS_1_0_ANCHOR
'GNOME-VFS_1_0_ANCHOR'. svn path=/tags/GNOME-VFS_1_0_ANCHOR/; revision=8487
Diffstat (limited to 'notes/test-notes.c')
-rw-r--r--notes/test-notes.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/notes/test-notes.c b/notes/test-notes.c
deleted file mode 100644
index 41def58a24..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 <gal/widgets/e-canvas.h>
-#include <gal/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;
-}