Cppcheck warnings.
--HG-- branch : develop
This commit is contained in:
parent
0024543764
commit
753e9c76f5
|
@ -155,8 +155,7 @@ void TapePreferencesPathPage::EditPath()
|
|||
{
|
||||
if (usedNotExistedDir)
|
||||
{
|
||||
QDir directory(path);
|
||||
directory.rmpath(QChar('.'));
|
||||
QDir(path).rmpath(QChar('.'));
|
||||
}
|
||||
|
||||
DefaultPath();
|
||||
|
|
|
@ -178,8 +178,7 @@ void PreferencesPathPage::EditPath()
|
|||
{
|
||||
if (usedNotExistedDir)
|
||||
{
|
||||
QDir directory(path);
|
||||
directory.rmpath(QChar('.'));
|
||||
QDir(path).rmpath(QChar('.'));
|
||||
}
|
||||
DefaultPath();
|
||||
return;
|
||||
|
@ -190,8 +189,7 @@ void PreferencesPathPage::EditPath()
|
|||
|
||||
if (usedNotExistedDir)
|
||||
{
|
||||
QDir directory(path);
|
||||
directory.rmpath(QChar('.'));
|
||||
QDir(path).rmpath(QChar('.'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user