Remove symlink target from m_watcher if added.

remotes/origin/KDE/4.7 v4.6.95
Christopher Reichert 15 years ago
parent 752a59f5b8
commit f0bfbb4caa
  1. 1
      part.cpp

@ -1132,6 +1132,7 @@ bool Part::closeUrl()
m_watcher->removeFile( localFilePath() );
QFileInfo fi(localFilePath());
m_watcher->removeDir( fi.absolutePath() );
if ( fi.isSymLink() ) m_watcher->removeFile( fi.readLink() );
}
m_fileWasRemoved = false;
if ( m_generatorGuiClient )

Loading…
Cancel
Save