Skip to content

Commit

Permalink
fix naming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bumbacoin committed Oct 10, 2019
1 parent a35e05f commit d869297
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions share/qt/make_windows_icon.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash
# create multiresolution windows icon
ICON_SRC=../../src/qt/res/icons/stronghands.png
ICON_DST=../../src/qt/res/icons/stronghands.ico
convert ${ICON_SRC} -resize 16x16 stronghands-16.png
convert ${ICON_SRC} -resize 32x32 stronghands-32.png
convert ${ICON_SRC} -resize 48x48 stronghands-48.png
convert stronghands-48.png stronghands-32.png stronghands-16.png ${ICON_DST}
ICON_SRC=../../src/qt/res/icons/Stronghands.png
ICON_DST=../../src/qt/res/icons/Stronghands.ico
convert ${ICON_SRC} -resize 16x16 Stronghands-16.png
convert ${ICON_SRC} -resize 32x32 Stronghands-32.png
convert ${ICON_SRC} -resize 48x48 Stronghands-48.png
convert Stronghands-48.png Stronghands-32.png Stronghands-16.png ${ICON_DST}

2 changes: 1 addition & 1 deletion src/qt/bitcoin.qrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE RCC><RCC version="1.0">
<qresource prefix="/icons">
<file alias="bitcoin">res/icons/bitcoin.png</file>
<file alias="stronghands">res/icons/stronghands.png</file>
<file alias="stronghands">res/icons/Stronghands.png</file>
<file alias="address-book">res/icons/address-book.png</file>
<file alias="quit">res/icons/quit.png</file>
<file alias="send">res/icons/send.png</file>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/res/bitcoin-qt-res.rc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
IDI_ICON1 ICON DISCARDABLE "icons/stronghands.ico"
IDI_ICON1 ICON DISCARDABLE "icons/Stronghands.ico"
IDI_ICON2 ICON DISCARDABLE "icons/stronghands_testnet.ico"

#include <windows.h> // needed for VERSIONINFO
Expand Down

0 comments on commit d869297

Please sign in to comment.