Changeset 41 for trunk


Ignore:
Timestamp:
Dec 19, 2005, 1:25:49 PM (20 years ago)
Author:
dmik
Message:

Implemented the OS/2 version of the QProcess class.

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/qprocess.h

    r40 r41  
    11/****************************************************************************
    2 ** $Id: qt/qprocess.h   3.3.1   edited May 27 2003 $
     2** $Id$
    33**
    44** Implementation of QProcess class
     
    9696#if defined(Q_OS_WIN32)
    9797    typedef void* PID;
     98#elif defined(Q_OS_OS2)
     99    typedef ::PID PID;
    98100#else
    99101    typedef Q_LONG PID;
  • trunk/src/kernel/qt_kernel.pri

    r40 r41  
    123123
    124124        os2:SOURCES += \
    125           $$KERNEL_CPP/qapplication_pm.cpp \
     125                  $$KERNEL_CPP/qapplication_pm.cpp \
    126126                  $$KERNEL_CPP/qclipboard_pm.cpp \
    127127                  $$KERNEL_CPP/qcolor_pm.cpp \
    128           $$KERNEL_CPP/qcursor_pm.cpp \
     128                  $$KERNEL_CPP/qcursor_pm.cpp \
    129129                  $$KERNEL_CPP/qdesktopwidget_pm.cpp \
    130130                  $$KERNEL_CPP/qeventloop_pm.cpp \
     
    132132                  $$KERNEL_CPP/qmime_pm.cpp \
    133133                  $$KERNEL_CPP/qpixmap_pm.cpp \
     134                  $$KERNEL_CPP/qprocess_pm.cpp \
    134135                  $$KERNEL_CPP/qpaintdevice_pm.cpp \
    135136                  $$KERNEL_CPP/qpainter_pm.cpp \
    136137                  $$KERNEL_CPP/qregion_pm.cpp \
    137           $$KERNEL_CPP/qthread_pm.cpp \
     138                  $$KERNEL_CPP/qthread_pm.cpp \
    138139                  $$KERNEL_CPP/qwidget_pm.cpp \
    139140                  $$KERNEL_CPP/qfontengine_pm.cpp
     
    284285                $$KERNEL_H/qpolygonscanner.h \
    285286                $$KERNEL_H/qprinter.h \
    286                 $$KERNEL_H/qprocess.h \
    287287                $$KERNEL_H/qsessionmanager.h \
    288288                $$KERNEL_H/qsound.h
     
    291291                $$KERNEL_CPP/qpolygonscanner.cpp \
    292292                $$KERNEL_CPP/qprinter.cpp \
    293                 $$KERNEL_CPP/qprocess.cpp \
    294293                $$KERNEL_CPP/qsound.cpp
    295294}
Note: See TracChangeset for help on using the changeset viewer.