diff options
author | David Robillard <d@drobilla.net> | 2022-09-27 18:35:31 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-09-27 18:36:33 -0400 |
commit | 92cf4f1e48a90d8622f237a732b08487e0cde46c (patch) | |
tree | 9b9cdeeb50b14bf8d64e2c6e914573303a7cc61c /src/gui | |
parent | 3ae3c86937c7ffc45d24e36a33560cd63ebb900b (diff) | |
download | ingen-92cf4f1e48a90d8622f237a732b08487e0cde46c.tar.gz ingen-92cf4f1e48a90d8622f237a732b08487e0cde46c.tar.bz2 ingen-92cf4f1e48a90d8622f237a732b08487e0cde46c.zip |
Use braced init lists to avoid repeating return types
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/PropertiesWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/PropertiesWindow.cpp b/src/gui/PropertiesWindow.cpp index 6082faed..4ea1536d 100644 --- a/src/gui/PropertiesWindow.cpp +++ b/src/gui/PropertiesWindow.cpp @@ -512,7 +512,7 @@ PropertiesWindow::get_value(LV2_URID type, Gtk::Widget* value_widget) } } - return Atom(); + return {}; } void |