From: Marcus Brinkmann Date: Tue, 25 Sep 2007 16:34:02 +0000 (+0000) Subject: 2007-09-25 Marcus Brinkmann X-Git-Tag: gpgme-1.1.6~25 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e7f0767e977d14abca010e8b7a93156247e85a16;p=gpgme.git 2007-09-25 Marcus Brinkmann * kdpipeiodevice.h: Use namespace _gpgme_. * kdpipeiodevice.cpp: Use namespace _gpgme_. [Q_OS_WIN32 && NOMINMAX]: Do not define NOMINMAX again. * w32-qt-io.cpp: Change namespace of KDPipeIODevice to _gpgme_::KDPipeIODevice. --- diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 9465509..3f1da55 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,11 @@ +2007-09-25 Marcus Brinkmann + + * kdpipeiodevice.h: Use namespace _gpgme_. + * kdpipeiodevice.cpp: Use namespace _gpgme_. + [Q_OS_WIN32 && NOMINMAX]: Do not define NOMINMAX again. + * w32-qt-io.cpp: Change namespace of KDPipeIODevice to + _gpgme_::KDPipeIODevice. + 2007-09-17 Werner Koch * rungpg.c (gpg_new): Make robust against undefined ttyname or diff --git a/gpgme/kdpipeiodevice.cpp b/gpgme/kdpipeiodevice.cpp index f4acebe..6f48292 100644 --- a/gpgme/kdpipeiodevice.cpp +++ b/gpgme/kdpipeiodevice.cpp @@ -26,7 +26,9 @@ #include #ifdef Q_OS_WIN32 -# define NOMINMAX +# ifndef NOMINMAX +# define NOMINMAX +# endif # include # include #else @@ -34,6 +36,8 @@ # include #endif +using namespace _gpgme_; + #ifndef KDAB_CHECK_THIS # define KDAB_CHECK_CTOR (void)1 # define KDAB_CHECK_DTOR KDAB_CHECK_CTOR diff --git a/gpgme/kdpipeiodevice.h b/gpgme/kdpipeiodevice.h index ce2873f..37d2a96 100644 --- a/gpgme/kdpipeiodevice.h +++ b/gpgme/kdpipeiodevice.h @@ -26,6 +26,8 @@ //#include "checker.h" +namespace _gpgme_ { + class KDPipeIODevice : public QIODevice { Q_OBJECT //KDAB_MAKE_CHECKABLE( KDPipeIODevice ) diff --git a/gpgme/w32-qt-io.cpp b/gpgme/w32-qt-io.cpp index c2a231a..989d993 100644 --- a/gpgme/w32-qt-io.cpp +++ b/gpgme/w32-qt-io.cpp @@ -53,9 +53,12 @@ extern "C" #endif #endif +using _gpgme_::KDPipeIODevice; + /* This file is an ugly hack to get GPGME working with Qt on Windows targets. On Windows, you can not select() on file descriptors. + The only way to check if there is something to read is to read something. This means that GPGME can not let Qt check for data without letting Qt also handle the data on Windows targets.