Remove usage of deprecated Qt API

Removes usage of the following deprecated Qt functions:
- QPixmap::grabWidget
- QString::null
- qFind
- qSort
- qGreater
- qCopy
This commit is contained in:
Lukas W committed 2018-06-17 14:27:28 +02:00
1 parent fefec9a8c6
commit 11c693205e
40 files changed
+82 -83

No files matched your search

+3 -3
View File
@@ -129,13 +129,13 @@ public:
void update( void );
inline QString fullName( QString path = QString::null )
inline QString fullName( QString path = QString() )
{
if( path == QString::null )
if( path == QString() )
{
path = m_directories[0];
}
if( path != QString::null )
if( path != QString() )
{
path += QDir::separator();
}