aboutsummaryrefslogtreecommitdiffstats
path: root/notes/test-notes.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-10-22 22:12:47 +0800
committerDan Winship <danw@src.gnome.org>2003-10-22 22:12:47 +0800
commit27e6d3cb39461babf270fc4e6c5ba986af38a85a (patch)
tree91dff8149f50ca834598fa60a749289ebfd62d0c /notes/test-notes.c
parent31be44baaaaf661c00292c53f03ebeba336155bd (diff)
downloadgsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.gz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.bz2
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.lz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.xz
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.tar.zst
gsoc2013-evolution-27e6d3cb39461babf270fc4e6c5ba986af38a85a.zip
Removed; this code has not been used since pre-1.0.
* executive-summary/*: Removed; this code has not been used since pre-1.0. * my-evolution/*: Removed; gone in evolution 2.0. * notes/*: Removed; never finished and no one is working on it. * configure.in (E_UTIL_{CFLAGS,LIBS}): Remove soup-2.0 since e-proxy is gone. (EVOLUTION_MAIL_{CFLAGS,LIBS}): Remove soup-2.0 since the mailer uses CamelHTTPStream now. (EVOLUTION_EXECUTIVE_SUMMARY_{CFLAGS,LIBS}): Gone (AC_OUTPUT): Remove my-evolution/Makefile * README: evolution no longer depends on soup svn path=/trunk/; revision=22976
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 1114b57e66..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");
- g_signal_connect((note), "changed",
- G_CALLBACK (text_changed), NULL);
-
- gtk_widget_show (note);
- gtk_main ();
-
- return 0;
-}