diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/symbol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/format/symbol.c b/src/format/symbol.c index 934eee3..5684928 100644 --- a/src/format/symbol.c +++ b/src/format/symbol.c @@ -32,7 +32,7 @@ #include "symbol-int.h" #include "../analysis/db/misc/rlestr.h" #include "../core/columns.h" -#ifdef HAVE_GTK_SUPPORT +#ifdef INCLUDE_GTK_SUPPORT # include "../glibext/gbinarycursor.h" #endif #include "../glibext/linegen-int.h" @@ -68,7 +68,7 @@ static void g_binary_symbol_finalize(GBinSymbol *); /* Indique le nombre de ligne prêtes à être générées. */ static size_t g_binary_symbol_count_lines(const GBinSymbol *); -#ifdef HAVE_GTK_SUPPORT +#ifdef INCLUDE_GTK_SUPPORT /* Retrouve l'emplacement correspondant à une position donnée. */ static void g_binary_symbol_compute_cursor(const GBinSymbol *, gint, size_t, size_t, GLineCursor **); @@ -183,7 +183,7 @@ static void g_binary_symbol_init(GBinSymbol *symbol) static void g_binary_symbol_interface_init(GLineGeneratorInterface *iface) { iface->count = (linegen_count_lines_fc)g_binary_symbol_count_lines; -#ifdef HAVE_GTK_SUPPORT +#ifdef INCLUDE_GTK_SUPPORT iface->compute = (linegen_compute_fc)g_binary_symbol_compute_cursor; iface->contain = (linegen_contain_fc)g_binary_symbol_contain_cursor; #endif @@ -792,7 +792,7 @@ static size_t g_binary_symbol_count_lines(const GBinSymbol *symbol) } -#ifdef HAVE_GTK_SUPPORT +#ifdef INCLUDE_GTK_SUPPORT /****************************************************************************** |