SF.net SVN: geany:[4189] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Mon Sep 14 17:26:11 UTC 2009
Revision: 4189
http://geany.svn.sourceforge.net/geany/?rev=4189&view=rev
Author: ntrel
Date: 2009-09-14 17:26:11 +0000 (Mon, 14 Sep 2009)
Log Message:
-----------
Add warning that GeanyQueue may be removed.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/queue.c
trunk/src/queue.h
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-09-14 17:10:22 UTC (rev 4188)
+++ trunk/ChangeLog 2009-09-14 17:26:11 UTC (rev 4189)
@@ -14,6 +14,8 @@
Make dialogs_show_question_full() use GTK dialog on Windows if
button text is not the stock yes/no items.
Add dialogs_show_prompt() which also has an 'Apply' button.
+ * src/queue.c, src/queue.h:
+ Add warning that GeanyQueue may be removed.
2009-09-13 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/src/queue.c
===================================================================
--- trunk/src/queue.c 2009-09-14 17:10:22 UTC (rev 4188)
+++ trunk/src/queue.c 2009-09-14 17:26:11 UTC (rev 4189)
@@ -20,10 +20,12 @@
* $Id$
*/
-/*
- * This provides a simple single linked list, with some functons to modify it.
- * Being a queue, you can append data only to the end of the list, end retrieve
- * data from the beginning. Only the first node is directly visible, but with the several foreach
+/* WARNING: Do not use this in new code, use GQueue or GList instead - this code may be
+ * removed.
+ *
+ * This provides a simple single linked list, with some functions to modify it.
+ * Being a queue, you can append data only to the end of the list, and retrieve
+ * data from the beginning. Only the first node is directly visible, but with the foreach
* functions you can iterate through the entire list.
*/
Modified: trunk/src/queue.h
===================================================================
--- trunk/src/queue.h 2009-09-14 17:10:22 UTC (rev 4188)
+++ trunk/src/queue.h 2009-09-14 17:26:11 UTC (rev 4189)
@@ -20,6 +20,9 @@
* $Id$
*/
+/* WARNING: Do not use this in new code, use GQueue or GList instead - this code may be
+ * removed. */
+
#ifndef __QUEUE_H__
#define __QUEUE_H__
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list