[Aptitude-svn-commit] r4283 - in branches/aptitude-0.3/aptitude: .
src
Daniel Burrows
dburrows at costa.debian.org
Mon Sep 26 06:25:44 UTC 2005
Author: dburrows
Date: Mon Sep 26 06:25:39 2005
New Revision: 4283
Modified:
branches/aptitude-0.3/aptitude/ChangeLog
branches/aptitude-0.3/aptitude/src/ui.h
Log:
Make show_message once again generate reverse video by default.
Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog (original)
+++ branches/aptitude-0.3/aptitude/ChangeLog Mon Sep 26 06:25:39 2005
@@ -1,5 +1,9 @@
2005-09-25 Daniel Burrows <dburrows at debian.org>
+ * src/ui.cc:
+
+ Make show_message() generate reverse video by default again.
+
* src/download_list.cc, src/download_list.h, src/generic/util/slotarg.h, src/ui.h, src/vscreen/slotarg.h, src/vscreen/vs_menu.h, src/vscreen/vs_menu.cc:
Move slotarg to the generic code layer.
Modified: branches/aptitude-0.3/aptitude/src/ui.h
==============================================================================
--- branches/aptitude-0.3/aptitude/src/ui.h (original)
+++ branches/aptitude-0.3/aptitude/src/ui.h Mon Sep 26 06:25:39 2005
@@ -254,7 +254,7 @@
*/
void show_message(fragment *msg,
slot0arg okslot,
- const style &st=style());
+ const style &st = style_attrs_flip(A_REVERSE));
/** Display the given message, either in a popup dialog box or as a
* "transient" message at the bottom of the screen. The message
@@ -267,7 +267,7 @@
*/
void show_message(const std::wstring &msg,
slot0arg okslot=NULL,
- const style &st=style());
+ const style &st = style_attrs_flip(A_REVERSE));
/** Display the given message, either in a popup dialog box or as a
* "transient" message at the bottom of the screen. The message
@@ -280,8 +280,8 @@
*/
void show_message(const std::string &msg,
slot0arg okslot=NULL,
- const style &st=style())
-;
+ const style &st = style_attrs_flip(A_REVERSE));
+
// Can be used to manually pop up an error dialog, if necessary.
void check_apt_errors();
More information about the Aptitude-svn-commit
mailing list