anjuta r3605 - in trunk: . plugins/glade plugins/symbol-browser
- From: jhs svn gnome org
- To: svn-commits-list gnome org
- Subject: anjuta r3605 - in trunk: . plugins/glade plugins/symbol-browser
- Date: Thu, 7 Feb 2008 23:24:58 +0000 (GMT)
Author: jhs
Date: Thu Feb 7 23:24:58 2008
New Revision: 3605
URL: http://svn.gnome.org/viewvc/anjuta?rev=3605&view=rev
Log:
2008-02-08 Johannes Schmid <jhs gnome org>
Patch from Rodrigo Moya <rodrigo novell com>
* plugins/glade/plugin.c: (ifile_open):
* plugins/symbol-browser/test-class.cpp:
* AUTHORS: Added Rodrigo
#514732 â 64 bit compliation error
#514733 â Use of uninitialized variables
Modified:
trunk/AUTHORS
trunk/ChangeLog
trunk/plugins/glade/plugin.c
trunk/plugins/symbol-browser/test-class.cpp
Modified: trunk/AUTHORS
==============================================================================
--- trunk/AUTHORS (original)
+++ trunk/AUTHORS Thu Feb 7 23:24:58 2008
@@ -93,6 +93,7 @@
RafaÅ Bursig <bursig poczta fm>
Rick Patel <rikul bellsouth net>
Rob Bradford <robster debian org>
+ Rodrigo Moya <rodrigo novell com>
Roel Vanhout <roel stack be>
Ross Golder <ross golder org>
Roy Wood <roy wood filogix com>
Modified: trunk/plugins/glade/plugin.c
==============================================================================
--- trunk/plugins/glade/plugin.c (original)
+++ trunk/plugins/glade/plugin.c Thu Feb 7 23:24:58 2008
@@ -642,7 +642,7 @@
gchar *filename;
IAnjutaDocumentManager* docman;
GList* docwids, *node;
- const GList *glade_obj_node;
+ GList *glade_obj_node;
g_return_if_fail (uri != NULL);
@@ -718,7 +718,7 @@
glade_plugin_add_project (ANJUTA_PLUGIN_GLADE (ifile), project);
/* Select the first window in the project */
- for (glade_obj_node = glade_project_get_objects (project);
+ for (glade_obj_node = (GList *) glade_project_get_objects (project);
glade_obj_node != NULL;
glade_obj_node = g_list_next (glade_obj_node))
{
Modified: trunk/plugins/symbol-browser/test-class.cpp
==============================================================================
--- trunk/plugins/symbol-browser/test-class.cpp (original)
+++ trunk/plugins/symbol-browser/test-class.cpp Thu Feb 7 23:24:58 2008
@@ -45,7 +45,7 @@
First::Second::Second_1_class *sec_class;
sec_class->func_second_1_class_foo ();
- Third::Fourth::Fourth_1_class *fourth_class;
+ Third::Fourth::Fourth_1_class *fourth_class = new Third::Fourth::Fourth_1_class;
fourth_class->func_fourth_1_class_foo ();
// yklass->
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]