mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
Prices: add support for NZD
This commit is contained in:
parent
103965ef40
commit
1b9cc7c679
3 changed files with 15 additions and 4 deletions
|
@ -126,6 +126,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>JPY</string>
|
<string>JPY</string>
|
||||||
|
@ -133,12 +138,12 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>RMB</string>
|
<string>NZD</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>AUD</string>
|
<string>RMB</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>754</width>
|
<width>1019</width>
|
||||||
<height>278</height>
|
<height>358</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
|
@ -93,6 +93,11 @@
|
||||||
<string>MXN</string>
|
<string>MXN</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>NZD</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>SEK</string>
|
<string>SEK</string>
|
||||||
|
|
|
@ -28,6 +28,7 @@ Prices::Prices(QObject *parent) : QObject(parent) {
|
||||||
fiat["CNY"] = "¥";
|
fiat["CNY"] = "¥";
|
||||||
fiat["CZK"] = "Kč";
|
fiat["CZK"] = "Kč";
|
||||||
fiat["AUD"] = "$";
|
fiat["AUD"] = "$";
|
||||||
|
fiat["NZD"] = "$";
|
||||||
}
|
}
|
||||||
|
|
||||||
void Prices::cryptoPricesReceived(const QJsonArray &data) {
|
void Prices::cryptoPricesReceived(const QJsonArray &data) {
|
||||||
|
|
Loading…
Reference in a new issue