Skip to content

Commit 9696ab5

Browse files
committed
Fix
1 parent 1c70a98 commit 9696ab5

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

SerialPrograms/Source/CommonFramework/ErrorReports/ErrorReports.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ SendableErrorReport::SendableErrorReport()
100100
? PROGRAM_NAME + " (" + PROGRAM_VERSION + "-dev)"
101101
: PROGRAM_NAME + " (" + PROGRAM_VERSION + ")"
102102
)
103+
, m_program_runtime_millis(0)
103104
{
104105
QDir().mkpath(QString::fromStdString(m_directory));
105106
}

SerialPrograms/Source/CommonFramework/GlobalSettingsPanel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ GlobalSettings::GlobalSettings()
178178
PA_ADD_OPTION(CHECK_FOR_UPDATES);
179179
PA_ADD_OPTION(STATS_FILE);
180180
PA_ADD_OPTION(TEMP_FOLDER);
181-
PA_ADD_OPTION(ALL_STATS);
182181
PA_ADD_OPTION(THEME);
183182
PA_ADD_OPTION(WINDOW_SIZE);
184183
#if (QT_VERSION_MAJOR == 6) && (QT_VERSION_MINOR >= 8)
@@ -191,6 +190,7 @@ GlobalSettings::GlobalSettings()
191190
#endif
192191

193192
PA_ADD_STATIC(m_discord_settings);
193+
PA_ADD_OPTION(ALL_STATS);
194194
PA_ADD_OPTION(DISCORD);
195195

196196
PA_ADD_STATIC(m_advanced_options);

SerialPrograms/Source/CommonFramework/Recording/StreamHistorySession.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ struct StreamHistorySession::Data{
4848

4949

5050

51+
StreamHistorySession::~StreamHistorySession() = default;
5152
StreamHistorySession::StreamHistorySession(Logger& logger)
5253
: AudioFloatStreamListener(1)
5354
, m_data(CONSTRUCT_TOKEN, logger)

SerialPrograms/Source/CommonFramework/Recording/StreamHistorySession.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class StreamHistorySession
2424
, public CameraSession::StateListener
2525
{
2626
public:
27+
~StreamHistorySession();
2728
StreamHistorySession(Logger& logger);
2829
void start(AudioChannelFormat format);
2930
bool save(const std::string& filename) const;

0 commit comments

Comments
 (0)