Moved GEANY_RESPONSE_* to callbacks.h

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@596 ea778897-0a13-0410-b9d1-a72fbfd435f5
master
Nick Treleaven 2006-07-20 21:17:17 +00:00
parent aff3e4f9dc
commit 43cae0b24a
2 changed files with 10 additions and 10 deletions

View File

@ -20,6 +20,13 @@
* $Id$
*/
enum {
GEANY_RESPONSE_REPLACE = 1,
GEANY_RESPONSE_REPLACE_ALL,
GEANY_RESPONSE_REPLACE_SEL,
GEANY_RESPONSE_FIND
};
extern gchar current_word[]; //needed for popup menu keybindings access

View File

@ -20,6 +20,9 @@
* $Id$
*/
#ifndef GEANY_H
#define GEANY_H
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
@ -30,9 +33,6 @@
# define PLAT_GTK 1
#endif
#ifndef GEANY_H
#define GEANY_H
#include "Scintilla.h"
#include "ScintillaWidget.h"
@ -260,13 +260,6 @@ enum
GEANY_IMAGE_NEW_ARROW
};
enum {
GEANY_RESPONSE_REPLACE = 1,
GEANY_RESPONSE_REPLACE_ALL = 2,
GEANY_RESPONSE_REPLACE_SEL = 3
};
enum
{
UP,