seed r666 - in trunk: . examples examples/lightsoff examples/lightsoff/legacy
- From: racarr svn gnome org
- To: svn-commits-list gnome org
- Subject: seed r666 - in trunk: . examples examples/lightsoff examples/lightsoff/legacy
- Date: Tue, 6 Jan 2009 03:21:09 +0000 (UTC)
Author: racarr
Date: Tue Jan 6 03:21:09 2009
New Revision: 666
URL: http://svn.gnome.org/viewvc/seed?rev=666&view=rev
Log:
Lightsoff is now hosted in gnome-games SVN.
Removed:
trunk/examples/lightsoff/0.svg
trunk/examples/lightsoff/1.svg
trunk/examples/lightsoff/2.svg
trunk/examples/lightsoff/3.svg
trunk/examples/lightsoff/4.svg
trunk/examples/lightsoff/5.svg
trunk/examples/lightsoff/6.svg
trunk/examples/lightsoff/7.svg
trunk/examples/lightsoff/8.svg
trunk/examples/lightsoff/9.svg
trunk/examples/lightsoff/COPYING
trunk/examples/lightsoff/Makefile.am
trunk/examples/lightsoff/arrow-l.svg
trunk/examples/lightsoff/arrow-r.svg
trunk/examples/lightsoff/arrow.js
trunk/examples/lightsoff/board.js
trunk/examples/lightsoff/lcd-back.svg
trunk/examples/lightsoff/lcd-front.svg
trunk/examples/lightsoff/lcd-off.svg
trunk/examples/lightsoff/legacy/lightsoff.js
trunk/examples/lightsoff/light-off.svg
trunk/examples/lightsoff/light-on.svg
trunk/examples/lightsoff/light.js
trunk/examples/lightsoff/main.js
trunk/examples/lightsoff/score.js
Modified:
trunk/configure.ac
trunk/examples/Makefile.am
trunk/examples/gtktreeview.js
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Tue Jan 6 03:21:09 2009
@@ -125,7 +125,6 @@
doc/tutorial-standalone/Makefile
doc/reference/Makefile
examples/Makefile
-examples/lightsoff/Makefile
examples/clutter-shader/Makefile
examples/glib/Makefile
examples/browser/Makefile
Modified: trunk/examples/Makefile.am
==============================================================================
--- trunk/examples/Makefile.am (original)
+++ trunk/examples/Makefile.am Tue Jan 6 03:21:09 2009
@@ -1,4 +1,4 @@
-SUBDIRS = lightsoff \
+SUBDIRS = \
clutter-shader \
glib \
browser \
Modified: trunk/examples/gtktreeview.js
==============================================================================
--- trunk/examples/gtktreeview.js (original)
+++ trunk/examples/gtktreeview.js Tue Jan 6 03:21:09 2009
@@ -15,15 +15,15 @@
v.append_column(c);
var m = new Gtk.ListStore();
-m.set_column_types(1, [GObject.TYPE_STRING]);
+m.set_column_types(1, [GObject.TYPE_INT]);
var iter = new Gtk.TreeIter();
m.append(iter);
-m.set_value(iter, 0, "Test 1");
+m.set_value(iter, 0, [GObject.TYPE_INT, 3]);
m.append(iter);
-m.set_value(iter, 0, "Test 2");
+m.set_value(iter, 0, 2);
m.append(iter);
-m.set_value(iter, 0, "Hello World!");
+m.set_value(iter, 0, 9);
//TODO: FIXME: Why does property not work here?
v.set_model(m);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]