Don't include keybindings.h in geany.h

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@452 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2006-06-16 19:58:26 +00:00
parent 6010e5bf13
commit e885f520ed
6 changed files with 8 additions and 1 deletions

View File

@ -14,6 +14,8 @@
* src/templates.c, src/templates.h, src/utils.c, src/utils.h,
src/callbacks.c: Cache the current function name for efficiency in
utils_get_current_function, other related fixes.
* src/geany.h, src/callbacks.c, src/prefs.c, src/dialogs.c:
src/main.c: Don't include keybindings.h in geany.h.
2006-06-15 Enrico Troeger <enrico.troeger@uvena.de>

View File

@ -46,6 +46,7 @@
#include "prefs.h"
#include "templates.h"
#include "treeviews.h"
#include "keybindings.h"
#ifdef GEANY_WIN32

View File

@ -45,6 +45,7 @@
#include "interface.h"
#include "utils.h"
#include "prefs.h"
#include "keybindings.h"

View File

@ -40,7 +40,6 @@
#include "tm_tagmanager.h"
#include "filetypes.h"
#include "keybindings.h"
#define SSM(s, m, w, l) scintilla_send_message(s, m, w, l)

View File

@ -47,6 +47,8 @@
#include "encodings.h"
#include "treeviews.h"
#include "notebook.h"
#include "keybindings.h"
#ifdef HAVE_VTE
# include "vte.h"
#endif

View File

@ -34,6 +34,8 @@
#include "sciwrappers.h"
#include "document.h"
#include "keyfile.h"
#include "keybindings.h"
#ifdef HAVE_VTE
# include "vte.h"
#endif