Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz authored and shoogle committed Jan 20, 2025
1 parent 0ada28c commit 9237fcd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/appshell/iappshellconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ class IAppShellConfiguration : MODULE_EXPORT_INTERFACE
virtual void applySettings() = 0;
virtual void rollbackSettings() = 0;

virtual void revertToFactorySettings(bool keepDefaultSettings = false, bool notifyAboutChanges = true, bool notifyOtherInstances = true) const = 0;
virtual void revertToFactorySettings(bool keepDefaultSettings = false, bool notifyAboutChanges = true,
bool notifyOtherInstances = true) const = 0;

virtual muse::io::paths_t sessionProjectsPaths() const = 0;
virtual muse::Ret setSessionProjectsPaths(const muse::io::paths_t& paths) = 0;
Expand Down
3 changes: 2 additions & 1 deletion src/appshell/internal/appshellconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ class AppShellConfiguration : public IAppShellConfiguration, public muse::Inject
void applySettings() override;
void rollbackSettings() override;

void revertToFactorySettings(bool keepDefaultSettings = false, bool notifyAboutChanges = true, bool notifyOtherInstances = true) const override;
void revertToFactorySettings(bool keepDefaultSettings = false, bool notifyAboutChanges = true,
bool notifyOtherInstances = true) const override;

muse::io::paths_t sessionProjectsPaths() const override;
muse::Ret setSessionProjectsPaths(const muse::io::paths_t& paths) override;
Expand Down

0 comments on commit 9237fcd

Please sign in to comment.