-rw-r--r-- | noncore/todayplugins/fortune/fortunepluginwidget.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/todayplugins/fortune/fortunepluginwidget.cpp b/noncore/todayplugins/fortune/fortunepluginwidget.cpp index 583bf0b..b210fa9 100644 --- a/noncore/todayplugins/fortune/fortunepluginwidget.cpp +++ b/noncore/todayplugins/fortune/fortunepluginwidget.cpp | |||
@@ -79,5 +79,6 @@ void FortunePluginWidget::getFortune() { | |||
79 | void FortunePluginWidget::slotStdOut( OProcess* proc, char* buf, int len ) | 79 | void FortunePluginWidget::slotStdOut( OProcess* proc, char* buf, int len ) |
80 | { | 80 | { |
81 | QCString cstring( buf, len ); | 81 | QCString s( buf, len ); |
82 | fortune->setText( cstring ); | 82 | s.replace( QRegExp("\n"), "" ); |
83 | fortune->setText( s ); | ||
83 | } | 84 | } |