summaryrefslogtreecommitdiffstats
path: root/include/widgets
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-01 14:20:36 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-01 14:20:36 +0200
commitcdc8e462b8b0e890bf9d00759290328186a44c48 (patch)
tree1ab63df87700417c1286cf5b536606b6c77dbdac /include/widgets
parent45e76b781eb1a65afe3df75857f1b7847bb25e49 (diff)
parent1d99363ce99d3412f20604ea93a49c7e3ee02340 (diff)
Merge remote-tracking branch 'origin/master' into barview
Diffstat (limited to 'include/widgets')
-rw-r--r--include/widgets/textbox.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/widgets/textbox.h b/include/widgets/textbox.h
index 94f4eb08..5ce93855 100644
--- a/include/widgets/textbox.h
+++ b/include/widgets/textbox.h
@@ -35,7 +35,6 @@
#include <cairo.h>
#include "widgets/widget.h"
#include "widgets/widget-internal.h"
-#include "x11-helper.h"
#include "keyb.h"
/**
@@ -88,7 +87,7 @@ typedef enum
TB_WRAP = 1 << 21,
TB_PASSWORD = 1 << 22,
TB_INDICATOR = 1 << 23,
- TB_ICON = 1<<24,
+ TB_ICON = 1 << 24,
} TextboxFlags;
/**
* Flags indicating current state of the textbox.
@@ -173,7 +172,7 @@ int textbox_keybinding ( textbox *tb, KeyBindingAction action );
* The text should be one insert from a keypress.. the first gunichar is validated to be (or not) control
* return TRUE if inserted
*/
-gboolean textbox_append_char ( textbox *tb, const char *pad, const int pad_len );
+gboolean textbox_append_text ( textbox *tb, const char *pad, const int pad_len );
/**
* @param tb Handle to the textbox