mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-03-22 17:46:08 -04:00
MSVC Compiler Warnings
This commit is contained in:
@@ -1638,8 +1638,7 @@ void GameList::AddGamePopup(QMenu& context_menu, u64 program_id, const std::stri
|
||||
const QFileInfo file_info(qpath);
|
||||
QDesktopServices::openUrl(QUrl::fromLocalFile(file_info.absolutePath()));
|
||||
});
|
||||
connect(open_save_location, &QAction::triggered,
|
||||
[this, program_id, game_name, copyWithProgress, path_str]() {
|
||||
connect(open_save_location, &QAction::triggered, [this, program_id, path_str]() {
|
||||
emit OpenFolderRequested(program_id, GameListOpenTarget::SaveData, path_str);
|
||||
});
|
||||
|
||||
|
||||
@@ -4629,13 +4629,13 @@ void GMainWindow::LoadAmiibo(const QString& filename) {
|
||||
}
|
||||
|
||||
void GMainWindow::OnOpenCitronFolder() {
|
||||
QDesktopServices::openUrl(QUrl::fromLocalFile(
|
||||
QString::fromStdString(Common::FS::GetCitronPath(Common::FS::CitronPath::CitronDir))));
|
||||
QDesktopServices::openUrl(QUrl::fromLocalFile(QString::fromStdString(
|
||||
Common::FS::GetCitronPath(Common::FS::CitronPath::CitronDir).string())));
|
||||
}
|
||||
|
||||
void GMainWindow::OnOpenLogFolder() {
|
||||
QDesktopServices::openUrl(QUrl::fromLocalFile(
|
||||
QString::fromStdString(Common::FS::GetCitronPath(Common::FS::CitronPath::LogDir))));
|
||||
QDesktopServices::openUrl(QUrl::fromLocalFile(QString::fromStdString(
|
||||
Common::FS::GetCitronPath(Common::FS::CitronPath::LogDir).string())));
|
||||
}
|
||||
|
||||
void GMainWindow::OnVerifyInstalledContents() {
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <mutex>
|
||||
|
||||
#include <QKeyEvent>
|
||||
#include <QObject>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user