SineStriker
2025-02-11 3e942c3dc8955be577079fbc028ce216e1c594b2
src/core/qwindowkit_windows.h
@@ -145,7 +145,7 @@
        void close();
        QString stringValue(QStringView subKey) const;
        QPair<DWORD, bool> dwordValue(QStringView subKey) const;
        std::pair<DWORD, bool> dwordValue(QStringView subKey) const;
    private:
        HKEY m_key;
@@ -166,10 +166,10 @@
            : QWinRegistryKey(parentHandle, subKey, permissions, access) {
        }
        inline QPair<DWORD, bool> dwordValue(QStringView subKey) const;
        inline std::pair<DWORD, bool> dwordValue(QStringView subKey) const;
    };
    inline QPair<DWORD, bool> WindowsRegistryKey::dwordValue(QStringView subKey) const {
    inline std::pair<DWORD, bool> WindowsRegistryKey::dwordValue(QStringView subKey) const {
        const auto val = value<DWORD>(subKey);
        if (!val) {
            return {0, false};