From 8aaba6633ec8b3303e0e7f24d42b96f3d5a4a90e Mon Sep 17 00:00:00 2001 From: Skye Deving <76892045+skyedeving@users.noreply.github.com> Date: Mon, 4 Jan 2021 19:21:11 -0600 Subject: [PATCH] Change default parameter to be QDateTime::currentDateTime() Print debug message if provided timestamp is invalid --- include/courtroom.h | 2 +- src/courtroom.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/courtroom.h b/include/courtroom.h index 9332481..4610130 100644 --- a/include/courtroom.h +++ b/include/courtroom.h @@ -225,7 +225,7 @@ public: // selected // or the user isn't already scrolled to the top void append_ic_text(QString p_text, QString p_name = "", QString action = "", - int color = 0, QDateTime timestamp = {}); + int color = 0, QDateTime timestamp = QDateTime::currentDateTime()); // prints who played the song to IC chat and plays said song(if found on local // filesystem) takes in a list where the first element is the song name and diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 9fda395..5f9d206 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -2650,8 +2650,7 @@ void Courtroom::append_ic_text(QString p_text, QString p_name, QString p_action, ui_ic_chatlog->textCursor().insertText( "[" + timestamp.toString("h:mm:ss AP") + "] ", normal); } else { - ui_ic_chatlog->textCursor().insertText( - "[" + QDateTime::currentDateTime().toString("h:mm:ss AP") + "] ", normal); + qDebug() << "could not insert invalid timestamp"; } }