Revision: 1200
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1200&view=rev
Author: kugel-
Date: 2010-03-22 00:47:59 +0000 (Mon, 22 Mar 2010)
Log Message:
-----------
Fix the general geany slowness that geanygdb causes once a binary is loaded.
Modified Paths:
--------------
trunk/geany-plugins/geanygdb/ChangeLog
trunk/geany-plugins/geanygdb/src/gdb-io-run.c
Modified: trunk/geany-plugins/geanygdb/ChangeLog
===================================================================
--- trunk/geany-plugins/geanygdb/ChangeLog 2010-03-21 22:49:45 UTC (rev 1199)
+++ trunk/geany-plugins/geanygdb/ChangeLog 2010-03-22 00:47:59 UTC (rev 1200)
@@ -1,3 +1,7 @@
+2010-03-22 Thomas Martitz <thomas.martitz(a)student.htw-berlin.de>
+
+ * src/gdb-io-run.c: Fix the general geany slowness that geanygdb causes once a binary is loaded.
+
2010-03-15 Thomas Martitz <thomas.martitz(a)student.htw-berlin.de>
* src/gdb-io-run.c, src/gdb-ui-break.c: Run gdb with LANG=C to avoid
Modified: trunk/geany-plugins/geanygdb/src/gdb-io-run.c
===================================================================
--- trunk/geany-plugins/geanygdb/src/gdb-io-run.c 2010-03-21 22:49:45 UTC (rev 1199)
+++ trunk/geany-plugins/geanygdb/src/gdb-io-run.c 2010-03-22 00:47:59 UTC (rev 1200)
@@ -470,9 +470,9 @@
}
st = g_io_channel_flush(src, &err);
gerror("Error pushing command", &err);
+ gdbio_wait(10);
}
do_loop();
- gdbio_wait(10);
return TRUE;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1195
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1195&view=rev
Author: dimitrov-adrian
Date: 2010-03-21 11:12:31 +0000 (Sun, 21 Mar 2010)
Log Message:
-----------
Treebrowser, fixed possible segfault onstart.
Modified Paths:
--------------
trunk/geany-plugins/treebrowser/ChangeLog
trunk/geany-plugins/treebrowser/src/treebrowser.c
Modified: trunk/geany-plugins/treebrowser/ChangeLog
===================================================================
--- trunk/geany-plugins/treebrowser/ChangeLog 2010-03-21 08:26:45 UTC (rev 1194)
+++ trunk/geany-plugins/treebrowser/ChangeLog 2010-03-21 11:12:31 UTC (rev 1195)
@@ -5,6 +5,7 @@
* src/treebrowser.c
fix few compile warnings with glib and unused vars
now directory is open when it click filling for first time
+ fixed possible segfault on start
20-03-2010 Adrian Dimitrov <dimitrov.adrian(a)gmail.com>
Modified: trunk/geany-plugins/treebrowser/src/treebrowser.c
===================================================================
--- trunk/geany-plugins/treebrowser/src/treebrowser.c 2010-03-21 08:26:45 UTC (rev 1194)
+++ trunk/geany-plugins/treebrowser/src/treebrowser.c 2010-03-21 11:12:31 UTC (rev 1195)
@@ -36,7 +36,7 @@
static gboolean CONFIG_SHOW_HIDDEN_FILES = FALSE;
static gboolean CONFIG_SHOW_BARS = TRUE;
static gboolean CONFIG_CHROOT_ON_DCLICK = FALSE;
-static gboolean CONFIG_FOLLOW_CURRENT_DOC = FALSE;
+static gboolean CONFIG_FOLLOW_CURRENT_DOC = TRUE;
/* ------------------
@@ -732,7 +732,7 @@
treebrowser_track_current_cb(void)
{
if (CONFIG_FOLLOW_CURRENT_DOC)
- treebrowser_track_current_cb();
+ treebrowser_track_current();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Plugins GTK 2.8 build test failed at: plugins loading test
See http://nightly.geany.org/misc/build_gtk28_plugins_stderr.log for details.
Error messages:
../../gtk28_test_plugins/codenav/src/codenavigation.c: In function 'plugin_configure':
../../gtk28_test_plugins/codenav/src/codenavigation.c:90: warning: ISO C90 forbids mixed declarations and code
../../gtk28_test_plugins/codenav/src/codenavigation.c: In function 'plugin_cleanup':
../../gtk28_test_plugins/codenav/src/codenavigation.c:111: warning: unused variable 'edit_menu'
...
../../gtk28_test_plugins/treebrowser/src/treebrowser.c:447: warning: implicit declaration of function 'gtk_cell_layout_get_cells'
../../gtk28_test_plugins/treebrowser/src/treebrowser.c:447: warning: assignment makes pointer from integer without a cast
../../gtk28_test_plugins/treebrowser/src/treebrowser.c: In function 'on_treeview_renamed':
../../gtk28_test_plugins/treebrowser/src/treebrowser.c:694: warning: assignment makes pointer from integer without a cast
../../gtk28_test_plugins/treebrowser/src/treebrowser.c:705: warning: implicit declaration of function 'g_rename'
** (plugin_test:22196): WARNING **: Can't load plugin: /home/enrico/geany/_build_/plugins_gtk28/default/treebrowser.so: undefined symbol: g_strcmp0
http://nightly.geany.org/