-rw-r--r-- | core/opie-login/qdmdialogimpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/opie-login/qdmdialogimpl.cpp b/core/opie-login/qdmdialogimpl.cpp index 56f0fc0..5d4cd49 100644 --- a/core/opie-login/qdmdialogimpl.cpp +++ b/core/opie-login/qdmdialogimpl.cpp @@ -10,80 +10,80 @@ ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** For further information contact info@lisa.de ** **********************************************************************/ /* * AUTHOR: Christian Rahn * EMAIL: cdr@lisa.de * * $Id$ */ #include "qdm_config.h" #ifdef QT_QWS_LOGIN #include <pwd.h> #include <unistd.h> #include <stdlib.h> #include <iostream.h> #include <assert.h> #include <qlabel.h> #include <qregexp.h> #include <qdatetime.h> #include <qmessagebox.h> #include <qcombobox.h> #include <qlineedit.h> #include <qtranslator.h> -#include <qpeapplication.h> +#include <qpe/qpeapplication.h> #include <qwsdisplay_qws.h> #include <string.h> #include <stdio.h> #include <errno.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/sem.h> #include <sys/shm.h> #include <sys/ipc.h> -#include <global.h> +#include <qpe/global.h> #if defined(QT_QWS_LOGIN_USEPAM) extern "C" { #include <security/pam_appl.h> } #else #define _XOPEN_SOURCE #include <unistd.h> #include <crypt.h> #endif #include "qdmdialogimpl.h" #include "../launcher/inputmethods.h" //---------------------------------------------------------------------------- //-- taken from semctl man page #if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) //-- union semun is defined by including <sys/sem.h> #else //-- according to X/OPEN we have to define it ourselves union semun { int val; // value for SETVAL struct semid_ds *buf; // buffer for IPC_STAT, IPC_SET unsigned short int *array; // array for GETALL, SETALL struct seminfo *__buf; // buffer for IPC_INFO }; #endif //---------------------------------------------------------------------------- |