summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/avdevice/qvideo.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:15:34 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:15:34 -0600
commit1b79089e1b614992ec6c9ba91441a8851030f75b (patch)
tree3599e02be64ac133bc665db3c84b93f673e64219 /kopete/libkopete/avdevice/qvideo.cpp
parent6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71 (diff)
downloadtdenetwork-1b79089e1b614992ec6c9ba91441a8851030f75b.tar.gz
tdenetwork-1b79089e1b614992ec6c9ba91441a8851030f75b.zip
Rename additional global functions and variables for tqt3
Diffstat (limited to 'kopete/libkopete/avdevice/qvideo.cpp')
-rw-r--r--kopete/libkopete/avdevice/qvideo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kopete/libkopete/avdevice/qvideo.cpp b/kopete/libkopete/avdevice/qvideo.cpp
index d8d91602..cc1a0252 100644
--- a/kopete/libkopete/avdevice/qvideo.cpp
+++ b/kopete/libkopete/avdevice/qvideo.cpp
@@ -72,13 +72,13 @@ bool QVideo::findDisplayProperties(ImageFormat& fmt, int& depth, unsigned int& b
int d = 0;
vi_out.screen = TQPaintDevice::x11AppScreen();
- vi_in = XGetVisualInfo(qt_xdisplay(), mask, &vi_out, &nvis);
+ vi_in = XGetVisualInfo(tqt_xdisplay(), mask, &vi_out, &nvis);
if (vi_in) {
for (int i = 0; i < nvis; i++) {
bpp = 0;
int n;
- XPixmapFormatValues *pf = XListPixmapFormats(qt_xdisplay(),&n);
+ XPixmapFormatValues *pf = XListPixmapFormats(tqt_xdisplay(),&n);
d = vi_in[i].depth;
for (int j = 0; j < n; j++) {
if (pf[j].depth == d) {