Revision: 5109
http://geany.svn.sourceforge.net/geany/?rev=5109&view=rev
Author: eht16
Date: 2010-07-31 14:25:30 +0000 (Sat, 31 Jul 2010)
Log Message:
-----------
Fix build with GTK 2.8, use the stock icon name directly instead of the macro. Though, the icon is still missing for GTK 2.8.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/vte.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-07-29 18:28:37 UTC (rev 5108)
+++ trunk/ChangeLog 2010-07-31 14:25:30 UTC (rev 5109)
@@ -1,6 +1,13 @@
+2010-07-31 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/vte.c:
+ Fix build with GTK 2.8, use the stock icon name directly instead
+ of the macro. Though, the icon is still missing for GTK 2.8.
+
+
2010-07-29 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
- * src/keybindings.cm src/vte.cm src/vte.h:
+ * src/keybindings.c, src/vte.c, src/vte.h:
Implement 'Select All' for the VTE widget.
Modified: trunk/src/vte.c
===================================================================
--- trunk/src/vte.c 2010-07-29 18:28:37 UTC (rev 5108)
+++ trunk/src/vte.c 2010-07-31 14:25:30 UTC (rev 5109)
@@ -521,7 +521,7 @@
gtk_widget_show(item);
gtk_container_add(GTK_CONTAINER(menu), item);
- item = gtk_image_menu_item_new_from_stock(GTK_STOCK_SELECT_ALL, NULL);
+ item = gtk_image_menu_item_new_from_stock("gtk-select-all", NULL);
gtk_widget_show(item);
gtk_container_add(GTK_CONTAINER(menu), item);
g_signal_connect(item, "activate", G_CALLBACK(vte_popup_menu_clicked), GINT_TO_POINTER(POPUP_SELECTALL));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Geany GTK 2.8 build test failed at: waf build
See http://geany.nightlybuilds.org/misc/build_gtk28_geany_stderr.log for details.
Error messages:
../../gtk28_test/src/vte.c: In function 'vte_create_popup_menu':
../../gtk28_test/src/vte.c:524: error: 'GTK_STOCK_SELECT_ALL' undeclared (first use in this function)
../../gtk28_test/src/vte.c:524: error: (Each undeclared identifier is reported only once
../../gtk28_test/src/vte.c:524: error: for each function it appears in.)
...
../../gtk28_test/src/vte.c: In function 'vte_create_popup_menu':
../../gtk28_test/src/vte.c:524: error: 'GTK_STOCK_SELECT_ALL' undeclared (first use in this function)
../../gtk28_test/src/vte.c:524: error: (Each undeclared identifier is reported only once
../../gtk28_test/src/vte.c:524: error: for each function it appears in.)
Build failed
-> task failed (err #1):
{task: cc vte.c -> vte_3.o}
http://geany.nightlybuilds.org/
Geany GTK 2.8 build test failed at: waf build
See http://geany.nightlybuilds.org/misc/build_gtk28_geany_stderr.log for details.
Error messages:
../../gtk28_test/src/vte.c: In function 'vte_create_popup_menu':
../../gtk28_test/src/vte.c:524: error: 'GTK_STOCK_SELECT_ALL' undeclared (first use in this function)
../../gtk28_test/src/vte.c:524: error: (Each undeclared identifier is reported only once
../../gtk28_test/src/vte.c:524: error: for each function it appears in.)
...
../../gtk28_test/src/vte.c: In function 'vte_create_popup_menu':
../../gtk28_test/src/vte.c:524: error: 'GTK_STOCK_SELECT_ALL' undeclared (first use in this function)
../../gtk28_test/src/vte.c:524: error: (Each undeclared identifier is reported only once
../../gtk28_test/src/vte.c:524: error: for each function it appears in.)
Build failed
-> task failed (err #1):
{task: cc vte.c -> vte_3.o}
http://geany.nightlybuilds.org/
Revision: 5106
http://geany.svn.sourceforge.net/geany/?rev=5106&view=rev
Author: eht16
Date: 2010-07-18 17:56:12 +0000 (Sun, 18 Jul 2010)
Log Message:
-----------
Update list of Python builtins, based on Python 2.6.
Modified Paths:
--------------
trunk/ChangeLog
trunk/data/filetypes.python
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-07-13 20:53:25 UTC (rev 5105)
+++ trunk/ChangeLog 2010-07-18 17:56:12 UTC (rev 5106)
@@ -1,3 +1,9 @@
+2010-07-18 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+
+ * data/filetypes.python:
+ Update list of Python builtins, based on Python 2.6.
+
+
2010-07-13 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/filetypes.c:
Modified: trunk/data/filetypes.python
===================================================================
--- trunk/data/filetypes.python 2010-07-13 20:53:25 UTC (rev 5105)
+++ trunk/data/filetypes.python 2010-07-18 17:56:12 UTC (rev 5106)
@@ -23,7 +23,7 @@
primary=and as assert break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return try while with yield False None True
# additional keywords, will be highlighted with style "word2"
# these are the builtins for Python 2.5 created with ' '.join(dir(__builtins__))
-identifiers=ArithmeticError AssertionError AttributeError BaseException DeprecationWarning EOFError Ellipsis EnvironmentError Exception False FloatingPointError FutureWarning GeneratorExit IOError ImportError ImportWarning IndentationError IndexError KeyError KeyboardInterrupt LookupError MemoryError NameError None NotImplemented NotImplementedError OSError OverflowError PendingDeprecationWarning ReferenceError RuntimeError RuntimeWarning StandardError StopIteration SyntaxError SyntaxWarning SystemError SystemExit TabError True TypeError UnboundLocalError UnicodeDecodeError UnicodeEncodeError UnicodeError UnicodeTranslateError UnicodeWarning UserWarning ValueError Warning ZeroDivisionError _ __debug__ __doc__ __import__ __name__ abs all any apply basestring bool buffer callable chr classmethod cmp coerce compile complex copyright credits delattr dict dir divmod enumerate eval execfile exit file filter float frozenset getattr globals hasattr hash help hex id input int intern isinstance issubclass iter len license list locals long map max min object oct open ord pow property quit range raw_input reduce reload repr reversed round set setattr slice sorted staticmethod str sum super tuple type unichr unicode vars xrange zip
+identifiers=ArithmeticError AssertionError AttributeError BaseException BufferError BytesWarning DeprecationWarning EOFError Ellipsis EnvironmentError Exception False FloatingPointError FutureWarning GeneratorExit IOError ImportError ImportWarning IndentationError IndexError KeyError KeyboardInterrupt LookupError MemoryError NameError None NotImplemented NotImplementedError OSError OverflowError PendingDeprecationWarning ReferenceError RuntimeError RuntimeWarning StandardError StopIteration SyntaxError SyntaxWarning SystemError SystemExit TabError True TypeError UnboundLocalError UnicodeDecodeError UnicodeEncodeError UnicodeError UnicodeTranslateError UnicodeWarning UserWarning ValueError Warning ZeroDivisionError __debug__ __doc__ __import__ __name__ __package__ abs all any apply basestring bin bool buffer bytearray bytes callable chr classmethod cmp coerce compile complex copyright credits delattr dict dir divmod enumerate eval execfile exit file filter float format frozenset getattr globals hasattr hash help hex id input int intern isinstance issubclass iter len license list locals long map max min next object oct open ord pow print property quit range raw_input reduce reload repr reversed round set setattr slice sorted staticmethod str sum super tuple type unichr unicode vars xrange zip
[lexer_properties]
fold.comment.python=1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.