Skip to content

Commit 600dd98

Browse files
committed
refactor: Comment out debug prints
1 parent cb10091 commit 600dd98

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/composition_manager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const QList<QColor>* const CompositionManager::getPhone1ColorValues(qint64 posit
5656
// TODO: REMOVE ME!
5757
qsizetype indexDelta = index - lastIndex - 1;
5858
if (indexDelta != 0)
59-
qDebug().nospace() << "[WARNING] Skipped " << indexDelta << " indexes!";
59+
// qDebug().nospace() << "[WARNING] Skipped " << indexDelta << " indexes!";
6060
lastIndex = index;
6161

6262

@@ -76,7 +76,7 @@ const QList<QColor>* const CompositionManager::getPhone2ColorValues(qint64 posit
7676
// TODO: REMOVE ME!
7777
qsizetype indexDelta = index - lastIndex - 1;
7878
if (indexDelta != 0)
79-
qDebug().nospace() << "[WARNING] Skipped " << indexDelta << " indexes!";
79+
// qDebug().nospace() << "[WARNING] Skipped " << indexDelta << " indexes!";
8080
lastIndex = index;
8181

8282

src/open_composition_dialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ QString autoCompleteHelper(const QString& filePathSource, const QString& fileDia
215215
// Try to autocomplete row1
216216
QFileInfo fileInfoSource = QFileInfo(filePathSource);
217217
QFileInfo fileInfoDestination = QFileInfo(fileInfoSource.dir().filePath(fileInfoSource.completeBaseName().append('.').append(QFileInfo(fileDialogFilterDestination).suffix())));
218-
qDebug() << "Autocomplete file:" << fileInfoDestination.filePath();
218+
// qDebug() << "Autocomplete file:" << fileInfoDestination.filePath();
219219
if (!fileInfoDestination.exists() || !fileInfoDestination.isFile())
220220
return QString(); // Return empty string
221221

0 commit comments

Comments
 (0)