From 713f6353dc40c80391f00a234d4b0b4036d76c48 Mon Sep 17 00:00:00 2001 From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com> Date: Fri, 25 Aug 2023 11:59:50 +0200 Subject: [PATCH] 1.10.0a --- Sandboxie/common/my_version.h | 4 ++-- SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp | 4 ++++ SandboxiePlus/SandMan/Wizards/NewBoxWizard.h | 2 +- SandboxiePlus/version.h | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Sandboxie/common/my_version.h b/Sandboxie/common/my_version.h index f56a863f..3248035d 100644 --- a/Sandboxie/common/my_version.h +++ b/Sandboxie/common/my_version.h @@ -21,8 +21,8 @@ #ifndef _MY_VERSION_H #define _MY_VERSION_H -#define MY_VERSION_BINARY 5,66,1 -#define MY_VERSION_STRING "5.66.1" +#define MY_VERSION_BINARY 5,66,0 +#define MY_VERSION_STRING "5.66.0" #define MY_ABI_VERSION 0x56500 // These #defines are used by either Resource Compiler or NSIS installer diff --git a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp index c713b03c..d88e3f0c 100644 --- a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp +++ b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp @@ -403,12 +403,16 @@ void CBoxTypePage::OnAdvanced() if (m_bInstant) { QString BoxName = m_pBoxName->text(); +#ifdef USE_COMBO int BoxType = m_pBoxType->currentIndex(); +#endif wizard()->restart(); m_pBoxName->setText(BoxName); +#ifdef USE_COMBO m_pBoxType->setCurrentIndex(BoxType); +#endif } } diff --git a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.h b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.h index 3430fb41..150411ec 100644 --- a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.h +++ b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.h @@ -68,8 +68,8 @@ private slots: void OnAdvanced(); private: - QComboBox* m_pBoxType; #ifdef USE_COMBO + QComboBox* m_pBoxType; QLabel* m_pInfoLabel; #endif QLineEdit* m_pBoxName; diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h index 71573b07..360d70aa 100644 --- a/SandboxiePlus/version.h +++ b/SandboxiePlus/version.h @@ -2,8 +2,8 @@ #define VERSION_MJR 1 #define VERSION_MIN 11 -#define VERSION_REV 1 -#define VERSION_UPD 0 +#define VERSION_REV 0 +#define VERSION_UPD 1 #ifndef STR #define STR2(X) #X