Remove deprecated struct field macros (this fixes building Geany

when GEANY_DISABLE_DEPRECATED is not set, fixes #2014586).


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2767 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-07-10 14:12:09 +00:00
parent 18ced215d1
commit e204cc44fb
2 changed files with 7 additions and 9 deletions

View File

@ -1,3 +1,10 @@
2008-07-10 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* plugins/pluginmacros.h:
Remove deprecated struct field macros (this fixes building Geany
when GEANY_DISABLE_DEPRECATED is not set, fixes #2014586).
2008-07-07 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* tagmanager/haskell.c:

View File

@ -40,15 +40,6 @@
#define documents_array geany_data->documents_array /**< Allows use of @c documents[] macro */
#define filetypes_array geany_data->filetypes_array /**< Allows use of @c filetypes[] macro */
#ifndef GEANY_DISABLE_DEPRECATED
#define app geany_data->app
#define main_widgets geany_data->main_widgets
#define prefs geany_data->prefs
#define project app->project
#endif
/* function group macros */
#define p_editor geany_functions->p_editor /**< See editor.h */