diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-04-11 18:07:53 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-04-11 18:07:53 -0500 |
commit | 7e8d6ff0bc1e5ac3742e3e5be42ff7d3ac7c98d4 (patch) | |
tree | ec8aef465aea4d25e62657888cb665af55593fb9 /src/kernel/qapplication.cpp | |
parent | f5b03149e8e68e510efe9842d85a058b42a51264 (diff) | |
download | tqt3-7e8d6ff0bc1e5ac3742e3e5be42ff7d3ac7c98d4.tar.gz tqt3-7e8d6ff0bc1e5ac3742e3e5be42ff7d3ac7c98d4.zip |
Automated update from Qt3
Diffstat (limited to 'src/kernel/qapplication.cpp')
-rw-r--r-- | src/kernel/qapplication.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel/qapplication.cpp b/src/kernel/qapplication.cpp index d67df12b0..d39f38e36 100644 --- a/src/kernel/qapplication.cpp +++ b/src/kernel/qapplication.cpp @@ -321,6 +321,7 @@ void tqt_init( int *, char **, TQApplication::Type ); void tqt_cleanup(); #if defined(Q_WS_X11) void tqt_init( Display* dpy, TQt::HANDLE, TQt::HANDLE ); +void tqt_init( int *, char **, Display* dpy, TQt::HANDLE, TQt::HANDLE ); #endif Q_EXPORT bool tqt_tryModalHelper( TQWidget *widget, TQWidget **rettop ); @@ -962,7 +963,7 @@ TQApplication::TQApplication(Display *dpy, int argc, char **argv, tqt_init( &argc, argv, GuiClient ); } else { - tqt_init(dpy, visual, colormap); + tqt_init( &argc, argv, dpy, visual, colormap ); } process_cmdline( &argc, argv ); |