diff options
| author | Fabio D'Urso <[email protected]> | 2013-07-01 02:02:21 +0200 |
|---|---|---|
| committer | Fabio D'Urso <[email protected]> | 2013-07-29 11:21:55 +0200 |
| commit | 29013ed214e3682ce441765b6e295c16724ecf66 (patch) | |
| tree | a1ca4a726590a2b8f3b755bce963e463dcffd44c /src/statusbar | |
| parent | 15107c780ccc84d4c7bb33e674b519d692348746 (diff) | |
Don't let HTML-like filenames be interpreted as HTML strings
So that filenames that look like HTML don't get fancy-formatted when
we show info about them (i.e. on hover)
This patch fixes the same issue in two places:
- dolphin, by setting Qt::PlainText on the status bar's label
- konqueror, by escaping setStatusBarText strings emitted by
DolphinPart
BUG: 321778
FIXED-IN: 4.11.0
REVIEW: 111746
Diffstat (limited to 'src/statusbar')
| -rw-r--r-- | src/statusbar/dolphinstatusbar.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/statusbar/dolphinstatusbar.cpp b/src/statusbar/dolphinstatusbar.cpp index 6f734ed4d..148919172 100644 --- a/src/statusbar/dolphinstatusbar.cpp +++ b/src/statusbar/dolphinstatusbar.cpp @@ -62,6 +62,7 @@ DolphinStatusBar::DolphinStatusBar(QWidget* parent) : // Initialize text label m_label = new QLabel(this); m_label->setWordWrap(true); + m_label->setTextFormat(Qt::PlainText); m_label->installEventFilter(this); // Initialize zoom widget |
