mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-08 20:41:59 +03:00
* view.c: s/attrset/tty_setcolor/g
This commit is contained in:
parent
bb683b54d1
commit
ba9bd33681
@ -1,9 +1,10 @@
|
||||
|
||||
2006-02-03 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* widget.c: Added assertions to prevent bugs like the one from
|
||||
view.c(view_labels) from hiding that long.
|
||||
* view.c: s/attrset/tty_setcolor/g
|
||||
* wtools.h: Replaced the printf-like attribute with __printf__,
|
||||
since GNU gettext defines a macro printf on some systems.
|
||||
|
||||
2006-02-03 Pavel Tsekov <ptsekov@gmx.net>
|
||||
|
||||
|
@ -66,11 +66,11 @@ void query_set_sel (int new_sel);
|
||||
/* Create message box but don't dismiss it yet, not background safe */
|
||||
struct Dlg_head *create_message (int flags, const char *title,
|
||||
const char *text, ...)
|
||||
__attribute__ ((format (printf, 3, 4)));
|
||||
__attribute__ ((format (__printf__, 3, 4)));
|
||||
|
||||
/* Show message box, background safe */
|
||||
void message (int flags, const char *title, const char *text, ...)
|
||||
__attribute__ ((format (printf, 3, 4)));
|
||||
__attribute__ ((format (__printf__, 3, 4)));
|
||||
|
||||
|
||||
/* Use this as header for message() - it expands to "Error" */
|
||||
|
Loading…
Reference in New Issue
Block a user