flatpak / libportal

libportal - Flatpak portal library
https://libportal.org
GNU Lesser General Public License v3.0
80 stars 39 forks source link

qt: Fix Qt warnings #132

Closed hfiguiere closed 1 year ago

TingPing commented 1 year ago

For consistency xdg-desktop-portal uses G_GNUC_UNUSED.

grulja commented 1 year ago

Or https://doc.qt.io/qt-5/qtglobal.html#Q_UNUSED

hfiguiere commented 1 year ago

Q_UNUSED doesn't work for function arguments as it is:

#define Q_UNUSED(x) (void)x;
hfiguiere commented 1 year ago

For consistency xdg-desktop-portal uses G_GNUC_UNUSED.

Done