summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-08-23 21:42:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-08-23 21:42:35 +0900
commitd33bda0b56a268d0b623e14d8915cd1f1906e86e (patch)
tree56b01e434774a84fd17de34ff275f0ef4725ec04
parent7ed618b8261157e74ca63beddfdbc60280ae384a (diff)
downloadtdebase-d33bda0b.tar.gz
tdebase-d33bda0b.zip
Fixed typedef-related warnings from compiler.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--tdeioslave/trash/tdeio_trash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/trash/tdeio_trash.h b/tdeioslave/trash/tdeio_trash.h
index 964e05f9a..1f19927ca 100644
--- a/tdeioslave/trash/tdeio_trash.h
+++ b/tdeioslave/trash/tdeio_trash.h
@@ -56,7 +56,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,