From a89380e93d571bfc0df2ed04ecae98014d7615ff Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Tue, 2 Jun 2009 00:06:44 +0300 Subject: [PATCH] GUI: Include result tree icons to resource (and executable). --- gui/resultstree.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gui/resultstree.cpp b/gui/resultstree.cpp index abae0f879..8ea9594c9 100644 --- a/gui/resultstree.cpp +++ b/gui/resultstree.cpp @@ -105,7 +105,7 @@ void ResultsTree::AddErrorItem(const QString &file, severity, message, hide, - "images/go-down.png"); + ":images/go-down.png"); } //TODO just hide/show current error and it's file @@ -414,11 +414,11 @@ void ResultsTree::QuickStartApplication(const QModelIndex &index) QString ResultsTree::SeverityToIcon(const QString &severity) { if (severity == "all") - return "images/dialog-warning.png"; + return ":images/dialog-warning.png"; if (severity == "error") - return "images/dialog-error.png"; + return ":images/dialog-error.png"; if (severity == "style") - return "images/dialog-information.png"; + return ":images/dialog-information.png"; return ""; }