mirror of
https://github.com/clangen/musikcube.git
synced 2025-03-14 04:18:36 +00:00
Fixed windows compile.
This commit is contained in:
parent
43a8ca1d8d
commit
38203f49a9
@ -177,7 +177,7 @@ void DirectoryLayout::OnDirectoryChanged(
|
||||
}
|
||||
|
||||
void DirectoryLayout::UpdateTitle() {
|
||||
std::string title = _TSTR("browse_title_tracks");
|
||||
std::string title = "";
|
||||
|
||||
size_t selected = this->directoryList->GetSelectedIndex();
|
||||
if (selected != ListWindow::NO_SELECTION) {
|
||||
|
@ -395,10 +395,10 @@ void LibraryLayout::ProcessMessage(musik::core::runtime::IMessage &message) {
|
||||
|
||||
void LibraryLayout::ShowDirectoryChooser() {
|
||||
BrowseOverlays::ShowDirectoryChooser(
|
||||
this->library,
|
||||
[this](std::string directory) {
|
||||
this->ShowDirectories(directory);
|
||||
});
|
||||
this->library,
|
||||
[this](std::string directory) {
|
||||
this->ShowDirectories(directory);
|
||||
});
|
||||
}
|
||||
|
||||
bool LibraryLayout::KeyPress(const std::string& key) {
|
||||
|
@ -32,6 +32,7 @@
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <stdafx.h>
|
||||
#include "MagicConstants.h"
|
||||
|
||||
using namespace musik::cube;
|
||||
|
@ -802,6 +802,7 @@ xcopy "$(SolutionDir)src\3rdparty\bin\win\font\*.ttf" "$(TargetDir)fonts\" /Y /e
|
||||
<ClCompile Include="app\util\ConsoleLogger.cpp" />
|
||||
<ClCompile Include="app\util\GlobalHotkeys.cpp" />
|
||||
<ClCompile Include="app\util\Hotkeys.cpp" />
|
||||
<ClCompile Include="app\util\MagicConstants.cpp" />
|
||||
<ClCompile Include="app\util\Playback.cpp" />
|
||||
<ClCompile Include="app\util\PreferenceKeys.cpp" />
|
||||
<ClCompile Include="app\util\Rating.cpp" />
|
||||
@ -883,6 +884,7 @@ xcopy "$(SolutionDir)src\3rdparty\bin\win\font\*.ttf" "$(TargetDir)fonts\" /Y /e
|
||||
<ClInclude Include="app\util\ConsoleLogger.h" />
|
||||
<ClInclude Include="app\util\GlobalHotkeys.h" />
|
||||
<ClInclude Include="app\util\Hotkeys.h" />
|
||||
<ClInclude Include="app\util\MagicConstants.h" />
|
||||
<ClInclude Include="app\util\Messages.h" />
|
||||
<ClInclude Include="app\util\Playback.h" />
|
||||
<ClInclude Include="app\util\PreferenceKeys.h" />
|
||||
|
@ -192,6 +192,9 @@
|
||||
<ClCompile Include="app\util\Rating.cpp">
|
||||
<Filter>app\util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="app\util\MagicConstants.cpp">
|
||||
<Filter>app\util</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="stdafx.h" />
|
||||
@ -439,6 +442,9 @@
|
||||
<ClInclude Include="app\util\Rating.h">
|
||||
<Filter>app\util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="app\util\MagicConstants.h">
|
||||
<Filter>app\util</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="cursespp">
|
||||
|
Loading…
x
Reference in New Issue
Block a user