Add warning that GeanyQueue may be removed.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4189 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2009-09-14 17:26:11 +00:00
parent 06113d6782
commit 1e53d84b6c
3 changed files with 11 additions and 4 deletions

View File

@ -14,6 +14,8 @@
Make dialogs_show_question_full() use GTK dialog on Windows if Make dialogs_show_question_full() use GTK dialog on Windows if
button text is not the stock yes/no items. button text is not the stock yes/no items.
Add dialogs_show_prompt() which also has an 'Apply' button. 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> 2009-09-13 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -20,10 +20,12 @@
* $Id$ * $Id$
*/ */
/* /* WARNING: Do not use this in new code, use GQueue or GList instead - this code may be
* This provides a simple single linked list, with some functons to modify it. * removed.
* 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 * 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. * functions you can iterate through the entire list.
*/ */

View File

@ -20,6 +20,9 @@
* $Id$ * $Id$
*/ */
/* WARNING: Do not use this in new code, use GQueue or GList instead - this code may be
* removed. */
#ifndef __QUEUE_H__ #ifndef __QUEUE_H__
#define __QUEUE_H__ #define __QUEUE_H__