diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-05-27 22:58:44 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-05-27 23:34:32 +0200 |
commit | 807e20570cbfef6e258313565598905564f1bb86 (patch) | |
tree | 695b3c940bce02305224e5781a7c48b5a6fdab94 /src/downloaditem.h | |
parent | Runtime Nepomuk tagging check (diff) | |
download | rekonq-807e20570cbfef6e258313565598905564f1bb86.tar.xz |
Kitchen sink clean up
- astyle
- copyrights
- (some) includes
Diffstat (limited to 'src/downloaditem.h')
-rw-r--r-- | src/downloaditem.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/downloaditem.h b/src/downloaditem.h index f7b12782..0b244c34 100644 --- a/src/downloaditem.h +++ b/src/downloaditem.h @@ -63,29 +63,29 @@ public: // This is used to add a DownloadItem managed with KIO explicit DownloadItem(KIO::CopyJob *job, const QDateTime &d, QObject *parent = 0); - + inline QDateTime dateTime() const { return m_dateTime; } KUrl destUrl() const; - + QString originUrl() const; QString destinationUrlString() const; QString fileName() const; QString fileDirectory() const; QString icon() const; QString errorString() const; - + inline int state() const { return m_state; } void setIsKGetDownload(); - - + + Q_SIGNALS: void downloadProgress(int percent); void downloadFinished(bool success); @@ -100,7 +100,7 @@ private: KUrl m_destUrl; QDateTime m_dateTime; - + KIO::CopyJob *m_job; int m_state; |