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