Fixed warnings.

This commit is contained in:
Leonardo Zide
2025-12-18 16:59:47 -03:00
parent 4e49d4d0cc
commit b3be4125eb
2 changed files with 9 additions and 10 deletions
+7 -8
View File
@@ -26,7 +26,6 @@
#include "lc_http.h"
#include "lc_zipfile.h"
#include "lc_file.h"
#include "lc_qutils.h"
#include "project.h"
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0)
@@ -53,10 +52,10 @@ const QLatin1String LineEnding("\r\n");
#define LC_BLENDER_ADDON_URL LC_BLENDER_ADDON_STR "releases/latest/download/" LC_BLENDER_ADDON_FILE
#define LC_BLENDER_ADDON_SHA_HASH_URL LC_BLENDER_ADDON_URL ".sha256"
#define LC_THEME_DARK_PALETTE_MIDLIGHT "#3E3E3E" // 62, 62, 62, 255
#define LC_THEME_DEFAULT_PALETTE_LIGHT "#AEADAC" // 174, 173, 172, 255
#define LC_THEME_DARK_PALETTE_MIDLIGHT QColor( 62, 62, 62, 255)
#define LC_THEME_DEFAULT_PALETTE_LIGHT QColor(174, 173, 172, 255)
#define LC_THEME_DARK_DECORATE_QUOTED_TEXT "#81D4FA" // 129, 212, 250, 255
#define LC_DISABLED_TEXT "#808080" // 128, 128, 128, 255
#define LC_DISABLED_TEXT QColor(128, 128, 128, 255)
#define LC_RENDER_IMAGE_MAX_SIZE 32768 // pixels
@@ -415,10 +414,10 @@ lcBlenderPreferences::lcBlenderPreferences(int Width, int Height, double Scale,
QPalette ReadOnlyPalette = QApplication::palette();
const lcPreferences& Preferences = lcGetPreferences();
if (Preferences.mColorTheme == lcColorTheme::Dark)
ReadOnlyPalette.setColor(QPalette::Base,QColor(LC_THEME_DARK_PALETTE_MIDLIGHT));
ReadOnlyPalette.setColor(QPalette::Base, LC_THEME_DARK_PALETTE_MIDLIGHT);
else
ReadOnlyPalette.setColor(QPalette::Base,QColor(LC_THEME_DEFAULT_PALETTE_LIGHT));
ReadOnlyPalette.setColor(QPalette::Text,QColor(LC_DISABLED_TEXT));
ReadOnlyPalette.setColor(QPalette::Base, LC_THEME_DEFAULT_PALETTE_LIGHT);
ReadOnlyPalette.setColor(QPalette::Text, LC_DISABLED_TEXT);
QGroupBox* BlenderExeBox = new QGroupBox(tr("Blender Executable"),mContent);
mForm->addRow(BlenderExeBox);
@@ -3629,7 +3628,7 @@ int lcBlenderPreferences::ShowMessage(QWidget* Parent, const QString& Header, c
if (FixedWidth == MinimumWidth)
{
int Index = (MinimumWidth / FontWidth) - 1;
if (!Body.mid(Index,1).isEmpty())
if (!Body.mid(Index, 1).isEmpty())
FixedWidth = Body.indexOf(" ", Index);
}
else if (FixedWidth < MinimumWidth)
+2 -2
View File
@@ -173,8 +173,8 @@ bool lcMouseShortcuts::Save(const QString& FileName)
return false;
QTextStream Stream(&File);
for (const QString& Shortcut : Shortcuts)
for (const QString& Shortcut : std::as_const(Shortcuts))
Stream << Shortcut << QLatin1String("\n");
Stream.flush();