summaryrefslogtreecommitdiffstats
path: root/qt-models/models.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-11-29 14:04:52 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-11-29 14:05:07 -0800
commit2747056889c6e003880201998353e28591faab62 (patch)
treeec0362db822a9a5b008ec28f3e3336e3a5505348 /qt-models/models.cpp
parent13c6a55a96434609dd053664d3a9093f41bf9ae1 (diff)
downloadsubsurface-2747056889c6e003880201998353e28591faab62.tar.gz
Revert "Use consistent aliases for all icons."
Diffstat (limited to 'qt-models/models.cpp')
-rw-r--r--qt-models/models.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-models/models.cpp b/qt-models/models.cpp
index fa9519600..c5bfda745 100644
--- a/qt-models/models.cpp
+++ b/qt-models/models.cpp
@@ -14,13 +14,13 @@
const QPixmap &trashIcon()
{
- static QPixmap trash = QPixmap(":list-remove-icon").scaledToHeight(defaultIconMetrics().sz_small);
+ static QPixmap trash = QPixmap(":trash").scaledToHeight(defaultIconMetrics().sz_small);
return trash;
}
const QPixmap &trashForbiddenIcon()
{
- static QPixmap trash = QPixmap(":list-remove-disabled-icon").scaledToHeight(defaultIconMetrics().sz_small);
+ static QPixmap trash = QPixmap(":trashForbidden").scaledToHeight(defaultIconMetrics().sz_small);
return trash;
}