aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/window_text_buffer.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-18 15:06:07 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit9bc637947603643c02b27a5c0954564811603bd7 (patch)
tree70baf8286cf4a736df1ec4b151f2f3bdd202e391 /engines/glk/window_text_buffer.h
parentdfe497cb79b52a4835700f806e5eb5a17543dd37 (diff)
downloadscummvm-rg350-9bc637947603643c02b27a5c0954564811603bd7.tar.gz
scummvm-rg350-9bc637947603643c02b27a5c0954564811603bd7.tar.bz2
scummvm-rg350-9bc637947603643c02b27a5c0954564811603bd7.zip
GLK: Change lots of comments from multiline to single line
Diffstat (limited to 'engines/glk/window_text_buffer.h')
-rw-r--r--engines/glk/window_text_buffer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/glk/window_text_buffer.h b/engines/glk/window_text_buffer.h
index 728919f46a..86b0319b75 100644
--- a/engines/glk/window_text_buffer.h
+++ b/engines/glk/window_text_buffer.h
@@ -107,17 +107,17 @@ public:
int _radjw;
int _radjn;
- /* Command history. */
+ // Command history.
Common::Array<Common::U32String> _history;
int _historyPos;
int _historyFirst, _historyPresent;
- /* for paging */
+ // for paging
int _lastSeen;
int _scrollPos;
int _scrollMax;
- /* for line input */
+ // for line input
void *_inBuf; ///< unsigned char* for latin1, glui32* for unicode
int _inMax;
long _inFence;
@@ -128,10 +128,10 @@ public:
glui32 _echoLineInput;
glui32 *_lineTerminators;
- /* style hints and settings */
+ // style hints and settings
WindowStyle _styles[style_NUMSTYLES];
- /* for copy selection */
+ // for copy selection
glui32 *_copyBuf;
int _copyPos;
public: