Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions framework/stubs/shortcuts/shortcutsconfigurationstub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ io::path_t ShortcutsConfigurationStub::shortcutsAppDataPath() const
return io::path_t();
}

#ifdef MUSE_MODULE_SHORTCUTS_V2
io::path_t ShortcutsConfigurationStub::commandShortcutsUserAppDataPath() const
{
return io::path_t();
Expand All @@ -52,3 +53,5 @@ io::path_t ShortcutsConfigurationStub::commandShortcutsAppDataPath() const
{
return io::path_t();
}

#endif
4 changes: 4 additions & 0 deletions framework/stubs/shortcuts/shortcutsconfigurationstub.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

#include "shortcuts/ishortcutsconfiguration.h"

#include "muse_framework_config.h"

namespace muse::shortcuts {
class ShortcutsConfigurationStub : public IShortcutsConfiguration
{
Expand All @@ -33,7 +35,9 @@ class ShortcutsConfigurationStub : public IShortcutsConfiguration
io::path_t shortcutsUserAppDataPath() const override;
io::path_t shortcutsAppDataPath() const override;

#ifdef MUSE_MODULE_SHORTCUTS_V2
io::path_t commandShortcutsUserAppDataPath() const override;
io::path_t commandShortcutsAppDataPath() const override;
#endif
};
}