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>
|
||||
</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"] = "Kč";
|
||||
fiat["AUD"] = "$";
|
||||
fiat["NZD"] = "$";
|
||||
}
|
||||
|
||||
void Prices::cryptoPricesReceived(const QJsonArray &data) {
|
||||
|
|
Loading…
Reference in a new issue