Skip to content

Commit

Permalink
Cleanup build after last couple of changes
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed May 28, 2022
1 parent bcd1b9e commit ebb768b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion carla
Submodule carla updated 1 files
+1 −1 source/Makefile.mk
6 changes: 3 additions & 3 deletions src/CardinalCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void loadDialog()
CardinalBaseUI* const ui = static_cast<CardinalBaseUI*>(pcontext->ui);
DISTRHO_SAFE_ASSERT_RETURN(ui != nullptr,);

FileBrowserOptions opts;
DISTRHO_NAMESPACE::FileBrowserOptions opts;
opts.startDir = dir.c_str();
opts.saving = ui->saving = false;
opts.title = "Open patch";
Expand Down Expand Up @@ -236,7 +236,7 @@ static void saveAsDialog(const bool uncompressed)
CardinalBaseUI* const ui = static_cast<CardinalBaseUI*>(pcontext->ui);
DISTRHO_SAFE_ASSERT_RETURN(ui != nullptr,);

FileBrowserOptions opts;
DISTRHO_NAMESPACE::FileBrowserOptions opts;
opts.startDir = dir.c_str();
opts.saving = ui->saving = true;
opts.title = "Save patch";
Expand Down Expand Up @@ -276,7 +276,7 @@ void async_dialog_filebrowser(const bool saving,
// only 1 dialog possible at a time
DISTRHO_SAFE_ASSERT_RETURN(ui->filebrowserhandle == nullptr,);

FileBrowserOptions opts;
DISTRHO_NAMESPACE::FileBrowserOptions opts;
opts.saving = saving;
opts.startDir = startDir;
opts.title = title;
Expand Down
1 change: 0 additions & 1 deletion src/PluginContext.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

#ifndef HEADLESS
# include "DistrhoUI.hpp"
# include "extra/FileBrowserDialog.hpp"
#endif

START_NAMESPACE_DISTRHO
Expand Down

0 comments on commit ebb768b

Please sign in to comment.