gui.cpp

changeset 158
499286fcbf37
parent 156
d35b7e440585
child 160
edcb03f3ef75
--- a/gui.cpp	Sat May 04 02:52:33 2013 +0300
+++ b/gui.cpp	Sat May 04 04:19:03 2013 +0300
@@ -146,7 +146,7 @@
 	slot_selectionChanged ();
 	
 	setStatusBar (new QStatusBar);
-	setWindowIcon (QIcon ("icons/ldforge.png"));
+	setWindowIcon (getIcon ("ldforge"));
 	setTitle ();
 	setMinimumSize (320, 200);
 	resize (800, 600);
@@ -955,8 +955,8 @@
 // =============================================================================
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 // =============================================================================
-QIcon getIcon (const char* sIconName) {
-	return (QIcon (format ("./icons/%s.png", sIconName)));
+QPixmap getIcon (const char* sIconName) {
+	return (QPixmap (format (":/icons/%s.png", sIconName)));
 }
 
 // =============================================================================

mercurial