diff options
author | David Robillard <d@drobilla.net> | 2020-07-15 20:00:37 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-17 17:13:30 +0200 |
commit | 07eb022d816bcefdc46f11e608e4a79de164eeb0 (patch) | |
tree | 6bb285a0f60359d29fbf2ab4238db75b5f1b02d0 /src/x11_in_qt5.cpp | |
parent | ad74225162512882afdceb3b3912473340f550eb (diff) | |
download | suil-07eb022d816bcefdc46f11e608e4a79de164eeb0.tar.gz suil-07eb022d816bcefdc46f11e608e4a79de164eeb0.tar.bz2 suil-07eb022d816bcefdc46f11e608e4a79de164eeb0.zip |
Fix Wunused-parameter warnings
Diffstat (limited to 'src/x11_in_qt5.cpp')
-rw-r--r-- | src/x11_in_qt5.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/x11_in_qt5.cpp b/src/x11_in_qt5.cpp index 2d5333f..c6c551f 100644 --- a/src/x11_in_qt5.cpp +++ b/src/x11_in_qt5.cpp @@ -198,9 +198,9 @@ wrapper_resize(LV2UI_Feature_Handle handle, int width, int height) SUIL_LIB_EXPORT SuilWrapper* -suil_wrapper_new(SuilHost* host, - const char* host_type_uri, - const char* ui_type_uri, +suil_wrapper_new(SuilHost*, + const char*, + const char*, LV2_Feature*** features, unsigned n_features) { |