diff options
author | 2012-06-02 11:17:14 -0400 | |
---|---|---|
committer | 2012-06-02 11:17:14 -0400 | |
commit | b12e1e05cccf2c983b3e1dd52449095e9faee4a6 (patch) | |
tree | 97ad9d1d84a2b1c807fb3ea1066174532567fa24 /core/gui.lua | |
parent | ad85d064bf4e540c5ecf65093f302fb79ee58bdc (diff) | |
download | textadept-b12e1e05cccf2c983b3e1dd52449095e9faee4a6.tar.gz textadept-b12e1e05cccf2c983b3e1dd52449095e9faee4a6.zip |
GCocoaDialog was renamed gtDialog.
Diffstat (limited to 'core/gui.lua')
-rw-r--r-- | core/gui.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/gui.lua b/core/gui.lua index 8abe74f4..bc6f034a 100644 --- a/core/gui.lua +++ b/core/gui.lua @@ -342,7 +342,7 @@ events_connect(events.UPDATE_UI, function() local enc = buffer.encoding or '' local text = not NCURSES and '%s %d/%d %s %d %s %s %s %s' or '%s %d/%d %s %d %s %s %s %s' - gui.docstatusbar_text = string_format(text, _L['Line:'], line, max, + gui.docstatusbar_text = string_format(text, _L['Line:'], line, max, _L['Col:'], col, lexer, eol, tabs, enc) end) @@ -435,13 +435,13 @@ local size The functions below are Lua C functions. --- --- Displays a gcocoadialog of a specified type with the given string arguments. +-- Displays a gtdialog of a specified type with the given string arguments. -- Each argument is like a string in Lua's `arg` table. Tables of strings are -- allowed as arguments and are expanded in place. This is useful for -- filteredlist dialogs with many items. --- @param kind The kind of gcocoadialog. --- @param ... Parameters to the gcocoadialog. --- @return string gcocoadialog result. +-- @param kind The kind of gtdialog. +-- @param ... Parameters to the gtdialog. +-- @return string gtdialog result. -- @class function -- @name dialog local dialog |