Software /
code /
prosody-modules
Comparison
mod_statistics/top.lua @ 1343:7dbde05b48a9
all the things: Remove trailing whitespace
author | Florian Zeitz <florob@babelmonkeys.de> |
---|---|
date | Tue, 11 Mar 2014 18:44:01 +0100 |
parent | 1084:9612cea92503 |
comparison
equal
deleted
inserted
replaced
1342:0ae065453dc9 | 1343:7dbde05b48a9 |
---|---|
200 base.promptwin:addstr(""); | 200 base.promptwin:addstr(""); |
201 base.promptwin:refresh(); | 201 base.promptwin:refresh(); |
202 | 202 |
203 base.listwin = curses.newwin(curses.lines()-(#status_lines+2)-5, 0, #status_lines+1, 0); | 203 base.listwin = curses.newwin(curses.lines()-(#status_lines+2)-5, 0, #status_lines+1, 0); |
204 base.listwin:syncok(); | 204 base.listwin:syncok(); |
205 | 205 |
206 base.infowin = curses.newwin(5, 0, curses.lines()-5, 0); | 206 base.infowin = curses.newwin(5, 0, curses.lines()-5, 0); |
207 base.infowin:mvaddstr(1, 1, "Hello world"); | 207 base.infowin:mvaddstr(1, 1, "Hello world"); |
208 base.infowin:border(0,0,0,0); | 208 base.infowin:border(0,0,0,0); |
209 base.infowin:syncok(); | 209 base.infowin:syncok(); |
210 base.infowin:refresh(); | 210 base.infowin:refresh(); |
211 | 211 |
212 base:resized(); | 212 base:resized(); |
213 | 213 |
214 return base; | 214 return base; |
215 end | 215 end |
216 | 216 |
217 return _M; | 217 return _M; |