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:
1 parent
fefec9a8c6
commit
11c693205e
40 files changed
+82
-83
No files matched your search
@@ -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();
|
||||
}
|
||||
|
||||
Reference in new issue
Block a user