diff options
author | 2009-01-27 13:14:24 -0500 | |
---|---|---|
committer | 2009-01-27 13:14:24 -0500 | |
commit | 94a974b31e106526ae9e626425580560221cb7a7 (patch) | |
tree | a7bf66c411b55881a9d94124832725e781e8a485 /src/textadept.h | |
parent | bcf630f108fcb957b0a908b258fe3a644e189ceb (diff) | |
download | textadept-94a974b31e106526ae9e626425580560221cb7a7.tar.gz textadept-94a974b31e106526ae9e626425580560221cb7a7.zip |
Encapsulate cec_store so it's not global.
Diffstat (limited to 'src/textadept.h')
-rw-r--r-- | src/textadept.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/textadept.h b/src/textadept.h index b6d3f1cf..303c3ddf 100644 --- a/src/textadept.h +++ b/src/textadept.h @@ -34,7 +34,6 @@ extern GtkWidget *window, *focused_editor, *command_entry, *pm_container, *pm_entry, *pm_view, *findbox, *find_entry, *replace_entry, *fnext_button, *fprev_button, *r_button, *ra_button, *match_case_opt, *whole_word_opt, *lua_opt, *in_files_opt; -extern GtkListStore *cec_store; extern GtkTreeStore *pm_store; extern lua_State *lua; #if !(WIN32 || MAC) @@ -91,7 +90,7 @@ void l_handle_scnnotification(SCNotification *n); void l_ta_command(const char *command); bool l_cec_get_completions_for(const char *entry_text); -void l_cec_populate(); +void l_cec_populate(GtkListStore *store); bool l_pm_get_contents_for(const char *entry_text, bool expanding); void l_pm_populate(GtkTreeIter *initial_iter); |