mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-28 21:37:50 +02:00
Fixed issues hopefully
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
|
||||
FileSelect::FileSelect(std::string defaultPath, std::vector<std::string> filter) {
|
||||
_filter = filter;
|
||||
root = core::args["root"];
|
||||
root = (std::string)core::args["root"];
|
||||
setPath(defaultPath);
|
||||
}
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include <core.h>
|
||||
|
||||
FolderSelect::FolderSelect(std::string defaultPath) {
|
||||
root = core::args["root"];
|
||||
root = (std::string)core::args["root"];
|
||||
setPath(defaultPath);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user