mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-21 03:35:40 -04:00
Qt: Support Qt 6
This commit is contained in:
@ -756,7 +756,7 @@ std::optional<unsigned> PromptForAddress(QWidget* parent, const QString& title,
|
||||
bool ok;
|
||||
uint address;
|
||||
if (address_str.startsWith("0x"))
|
||||
address = address_str.midRef(2).toUInt(&ok, 16);
|
||||
address = address_str.mid(2).toUInt(&ok, 16);
|
||||
else
|
||||
address = address_str.toUInt(&ok, 16);
|
||||
if (code)
|
||||
|
Reference in New Issue
Block a user