diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-08-27 13:41:14 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-08-27 13:41:14 +0000 |
commit | 9cdc9942ef0f6d5f47b5ecb4551a2dcebefc4073 (patch) | |
tree | f7d69a78c827261d6298d19daa685072b7ab14ba /keyserverimportdialog.h | |
parent | umlaute are handled correctly while signing (diff) | |
download | gpg4usb-9cdc9942ef0f6d5f47b5ecb4551a2dcebefc4073.tar.gz gpg4usb-9cdc9942ef0f6d5f47b5ecb4551a2dcebefc4073.zip |
changed includes to class declarations where possible and moved includes and class declarations to header files
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@522 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'keyserverimportdialog.h')
-rw-r--r-- | keyserverimportdialog.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/keyserverimportdialog.h b/keyserverimportdialog.h index 18aa913..50c2025 100644 --- a/keyserverimportdialog.h +++ b/keyserverimportdialog.h @@ -23,14 +23,16 @@ #ifndef KEYSERVERIMPORTDIALOG_H #define KEYSERVERIMPORTDIALOG_H -#include <QDialog> -#include <QDir> -#include <QNetworkAccessManager> -#include <QUrl> - #include "context.h" +#include <QNetworkAccessManager> +#include <QtNetwork> QT_BEGIN_NAMESPACE +class QDialog; +class QDir; +class QUrl; +class QtGui; +class QPixmap; class QNetworkReply; class QComboBox; class QLabel; |