Skip to content

Commit

Permalink
Remove some debug messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
netterfield committed Jan 30, 2016
1 parent 883cd08 commit 32549cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/geticon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
#include <QDebug>

QIcon KstGetIcon(QString icon_name) {
static bool has_svg = true;
//static bool has_svg = true;

QString svg_name = ":svg_icons/"+icon_name+".svgz";
if (QFile::exists(svg_name)) {
qDebug() << svg_name;
//qDebug() << svg_name;
return QIcon(svg_name);
} else {
QString png_name = ":"+icon_name+".png";
Expand Down

0 comments on commit 32549cf

Please sign in to comment.