diff --git a/src/gui/panel/infobox-panel.cpp b/src/gui/panel/infobox-panel.cpp
index c17910b73..215689e97 100644
--- a/src/gui/panel/infobox-panel.cpp
+++ b/src/gui/panel/infobox-panel.cpp
@@ -117,7 +117,7 @@ namespace panel{
static uint bangNo{0};
static _Fmt msgTemplate{"Bang #%d\n"};
- getLog().showMsg(NOTE_WARN, msgTemplate % ++bangNo);
+ getLog().addMsg (msgTemplate % ++bangNo);
}
diff --git a/src/gui/widget/error-log-display.hpp b/src/gui/widget/error-log-display.hpp
index 7e4d59a7e..01ae3ad54 100644
--- a/src/gui/widget/error-log-display.hpp
+++ b/src/gui/widget/error-log-display.hpp
@@ -101,33 +101,18 @@ namespace widget {
model::Revealer reveal;
- void
- showMsg (NotifyLevel severity, string const& text)
- {
- //////////////////////////////////////////////////TICKET #1102 : add formatting according to the error level
- switch (severity) {
- case NOTE_ERROR:
- addEntry ("ERROR: "+text);
- break;
- case NOTE_WARN:
- addEntry ("WARN: "+text);
- break;
- default:
- addEntry (text);
- break;
- }
- }
-
void
clearAll()
{
UNIMPLEMENTED ("empty buffer and discard all error bookmarks");
}
+ /** just add normal information message to buffer,
+ * without special markup and without expanding the widget */
void
addMsg (string text)
{
- UNIMPLEMENTED ("add normal information message to buffer");
+ showMsg (NOTE_INFO, text);
}
void
@@ -158,6 +143,24 @@ namespace widget {
private:/* ===== Internals ===== */
+ void
+ showMsg (NotifyLevel severity, string const& text)
+ {
+ //////////////////////////////////////////////////TICKET #1102 : add formatting according to the error level
+ switch (severity) {
+ case NOTE_ERROR:
+ addEntry ("ERROR: "+text);
+ break;
+ case NOTE_WARN:
+ addEntry ("WARN: "+text);
+ break;
+ default:
+ addEntry (text);
+ break;
+ }
+ }
+
+
Gtk::TextView textLog_;
/** add message entry to the (ever growing) text buffer.
diff --git a/wiki/thinkPad.ichthyo.mm b/wiki/thinkPad.ichthyo.mm
index b77d5ef85..e87c25dd7 100644
--- a/wiki/thinkPad.ichthyo.mm
+++ b/wiki/thinkPad.ichthyo.mm
@@ -320,8 +320,8 @@
-
-
+
+
@@ -329,7 +329,7 @@
-
+
@@ -415,7 +415,7 @@