Minor code clean up

This commit is contained in:
Christophe Dumez
2012-08-25 16:34:00 +03:00
parent f3d5039e33
commit 093fb303f3
5 changed files with 24 additions and 17 deletions

View File

@@ -88,12 +88,12 @@
*/
QtLockedFile::QtLockedFile()
: QFile()
, m_lock_mode(NoLock)
{
#ifdef Q_OS_WIN
wmutex = 0;
rmutex = 0;
#endif
m_lock_mode = NoLock;
}
/*!
@@ -105,12 +105,12 @@ QtLockedFile::QtLockedFile()
*/
QtLockedFile::QtLockedFile(const QString &name)
: QFile(name)
, m_lock_mode(NoLock)
{
#ifdef Q_OS_WIN
wmutex = 0;
rmutex = 0;
#endif
m_lock_mode = NoLock;
}
/*!