1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix: add missing type for Qt slot

(cherry picked from commit ad139d67c2)
This commit is contained in:
sudden6 2020-03-17 18:05:48 +01:00 committed by Anthony Bilinski
parent df7fe22398
commit b5785a1b0c
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -94,6 +94,7 @@ void Nexus::start()
qRegisterMetaType<const int16_t*>("const int16_t*");
qRegisterMetaType<int32_t>("int32_t");
qRegisterMetaType<int64_t>("int64_t");
qRegisterMetaType<size_t>("size_t");
qRegisterMetaType<QPixmap>("QPixmap");
qRegisterMetaType<Profile*>("Profile*");
qRegisterMetaType<ToxAV*>("ToxAV*");