Merge pull request 'Prices: add support for AUD' (#35) from tobtoht/feather:cur_aud into master

Reviewed-on: feather/feather#35
fix-rpath-debug
tobtoht 4 years ago
commit 3f9080332b

@ -136,6 +136,11 @@
<string>RMB</string> <string>RMB</string>
</property> </property>
</item> </item>
<item>
<property name="text">
<string>AUD</string>
</property>
</item>
</widget> </widget>
</item> </item>
</layout> </layout>

@ -53,6 +53,11 @@
<string>GBP</string> <string>GBP</string>
</property> </property>
</item> </item>
<item>
<property name="text">
<string>AUD</string>
</property>
</item>
<item> <item>
<property name="text"> <property name="text">
<string>CAD</string> <string>CAD</string>

@ -27,6 +27,7 @@ Prices::Prices(QObject *parent) : QObject(parent) {
fiat["CHF"] = "Fr"; fiat["CHF"] = "Fr";
fiat["CNY"] = "¥"; fiat["CNY"] = "¥";
fiat["CZK"] = ""; fiat["CZK"] = "";
fiat["AUD"] = "$";
} }
void Prices::cryptoPricesReceived(const QJsonArray &data) { void Prices::cryptoPricesReceived(const QJsonArray &data) {

Loading…
Cancel
Save