Skip to content

Commit

Permalink
Make dependency on QTextStream explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
BatchDrake committed May 15, 2023
1 parent d4adf61 commit 318ab26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 4 additions & 5 deletions AmateurDSN.pro
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ isEmpty(SIGDIGGER_PREFIX) {
SIGDIGGER_INSTALL_HEADERS=$$SIGDIGGER_PREFIX/include/SigDigger
}

# Default rules for deployment.
target.path = $$PLUGIN_DIRECTORY
!isEmpty(target.path): INSTALLS += target

# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
Expand Down Expand Up @@ -57,11 +61,6 @@ unix: PKGCONFIG += suscan sigutils fftw3 sndfile

CONFIG += c++11


# Default rules for deployment.
target.path = $$PLUGIN_DIRECTORY
!isEmpty(target.path): INSTALLS += target

FORMS += \
DopplerTool.ui \
DriftTool.ui \
Expand Down
1 change: 1 addition & 0 deletions DriftTool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <QFileDialog>
#include <QDir>
#include <GlobalProperty.h>
#include <QTextStream>

#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
# include <QRegularExpression>
Expand Down

0 comments on commit 318ab26

Please sign in to comment.