aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/rgscan
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/rgscan')
-rw-r--r--src/plugins/General/rgscan/rgscandialog.cpp2
-rw-r--r--src/plugins/General/rgscan/rgscandialog.h2
-rw-r--r--src/plugins/General/rgscan/rgscanfactory.cpp2
-rw-r--r--src/plugins/General/rgscan/rgscanhelper.h2
-rw-r--r--src/plugins/General/rgscan/rgscanner.cpp14
5 files changed, 11 insertions, 11 deletions
diff --git a/src/plugins/General/rgscan/rgscandialog.cpp b/src/plugins/General/rgscan/rgscandialog.cpp
index c2814b60c..0818ee26d 100644
--- a/src/plugins/General/rgscan/rgscandialog.cpp
+++ b/src/plugins/General/rgscan/rgscandialog.cpp
@@ -270,7 +270,7 @@ RGScanner *RGScanDialog::findScannerByUrl(const QString &url)
if(scanner->url() == url)
return scanner;
}
- return 0;
+ return nullptr;
}
QString RGScanDialog::getAlbumName(const QString &url)
diff --git a/src/plugins/General/rgscan/rgscandialog.h b/src/plugins/General/rgscan/rgscandialog.h
index 18dcda9ad..22f5e457b 100644
--- a/src/plugins/General/rgscan/rgscandialog.h
+++ b/src/plugins/General/rgscan/rgscandialog.h
@@ -61,7 +61,7 @@ class RGScanDialog : public QDialog
{
Q_OBJECT
public:
- explicit RGScanDialog(QList <PlayListTrack *> tracks, QWidget *parent = 0);
+ explicit RGScanDialog(QList <PlayListTrack *> tracks, QWidget *parent = nullptr);
virtual ~RGScanDialog();
private slots:
diff --git a/src/plugins/General/rgscan/rgscanfactory.cpp b/src/plugins/General/rgscan/rgscanfactory.cpp
index 9e68e89a9..18998ac2c 100644
--- a/src/plugins/General/rgscan/rgscanfactory.cpp
+++ b/src/plugins/General/rgscan/rgscanfactory.cpp
@@ -41,7 +41,7 @@ QObject *RGScanFactory::create(QObject *parent)
QDialog *RGScanFactory::createConfigDialog(QWidget *parent)
{
Q_UNUSED(parent);
- return 0;
+ return nullptr;
}
void RGScanFactory::showAbout(QWidget *parent)
diff --git a/src/plugins/General/rgscan/rgscanhelper.h b/src/plugins/General/rgscan/rgscanhelper.h
index bc67a700b..e68f857a0 100644
--- a/src/plugins/General/rgscan/rgscanhelper.h
+++ b/src/plugins/General/rgscan/rgscanhelper.h
@@ -33,7 +33,7 @@ class RGScanHelper : public QObject
{
Q_OBJECT
public:
- RGScanHelper(QObject *parent = 0);
+ RGScanHelper(QObject *parent = nullptr);
~RGScanHelper();
private slots:
diff --git a/src/plugins/General/rgscan/rgscanner.cpp b/src/plugins/General/rgscan/rgscanner.cpp
index e1311bd97..13ff79cdf 100644
--- a/src/plugins/General/rgscan/rgscanner.cpp
+++ b/src/plugins/General/rgscan/rgscanner.cpp
@@ -35,9 +35,9 @@ RGScanner::RGScanner()
m_is_running = false;
m_is_pending = false;
m_has_values = false;
- m_handle = 0;
- m_decoder = 0;
- m_source = 0;
+ m_handle = nullptr;
+ m_decoder = nullptr;
+ m_source = nullptr;
}
RGScanner::~RGScanner()
@@ -47,7 +47,7 @@ RGScanner::~RGScanner()
if(m_handle)
{
DeinitGainAnalysis(m_handle);
- m_handle = 0;
+ m_handle = nullptr;
}
}
@@ -57,7 +57,7 @@ bool RGScanner::prepare(const QString &url)
deinit();
m_url = url;
QString name = m_url.section("/", -1);
- InputSource *source = InputSource::create(url, 0);
+ InputSource *source = InputSource::create(url, nullptr);
if(!source->initialize())
{
delete source;
@@ -273,11 +273,11 @@ void RGScanner::deinit()
if(m_decoder)
{
delete m_decoder;
- m_decoder = 0;
+ m_decoder = nullptr;
}
if(m_source)
{
delete m_source;
- m_source = 0;
+ m_source = nullptr;
}
}