Prices: add support for NZD

qr-code-scan
tobtoht 4 years ago
parent 103965ef40
commit 1b9cc7c679

@ -126,6 +126,11 @@
<string>GBP</string>
</property>
</item>
<item>
<property name="text">
<string>AUD</string>
</property>
</item>
<item>
<property name="text">
<string>JPY</string>
@ -133,12 +138,12 @@
</item>
<item>
<property name="text">
<string>RMB</string>
<string>NZD</string>
</property>
</item>
<item>
<property name="text">
<string>AUD</string>
<string>RMB</string>
</property>
</item>
</widget>

@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>754</width>
<height>278</height>
<width>1019</width>
<height>358</height>
</rect>
</property>
<property name="windowTitle">
@ -93,6 +93,11 @@
<string>MXN</string>
</property>
</item>
<item>
<property name="text">
<string>NZD</string>
</property>
</item>
<item>
<property name="text">
<string>SEK</string>

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

Loading…
Cancel
Save