diff options
author | Michele Calgaro <[email protected]> | 2018-08-23 21:42:35 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-08-23 21:42:49 +0900 |
commit | 11333a810ebb146394a0c5b41d045cc894bb3ef4 (patch) | |
tree | 93964292f44b2c4bb87502ae2af11963f5abd656 /tdeioslave | |
parent | 2baa14c861aadb8e4827dafe54d8c04a4115c5bd (diff) | |
download | tdebase-11333a810ebb146394a0c5b41d045cc894bb3ef4.tar.gz tdebase-11333a810ebb146394a0c5b41d045cc894bb3ef4.zip |
Fixed typedef-related warnings from compiler.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit d33bda0b56a268d0b623e14d8915cd1f1906e86e)
Diffstat (limited to 'tdeioslave')
-rw-r--r-- | tdeioslave/trash/tdeio_trash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/trash/tdeio_trash.h b/tdeioslave/trash/tdeio_trash.h index 954dbe7a6..550ad55b7 100644 --- a/tdeioslave/trash/tdeio_trash.h +++ b/tdeioslave/trash/tdeio_trash.h @@ -55,7 +55,7 @@ private slots: void jobFinished( TDEIO::Job* job ); private: - typedef enum CopyOrMove { Copy, Move }; + enum CopyOrMove { Copy, Move }; void copyOrMove( const KURL& src, const KURL& dest, bool overwrite, CopyOrMove action ); void createTopLevelDirEntry(TDEIO::UDSEntry& entry); bool createUDSEntry( const TQString& physicalPath, const TQString& fileName, const TQString& url, |