From bc1c58a810db6f1389d55b9340cb6d6dce97d84d Mon Sep 17 00:00:00 2001 From: doitux Date: Mon, 26 Feb 2007 09:05:38 +0000 Subject: [PATCH] --- src/gui/qt/mainwindow/mainwindowimpl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/qt/mainwindow/mainwindowimpl.cpp b/src/gui/qt/mainwindow/mainwindowimpl.cpp index 1840da5c..bce5b4af 100755 --- a/src/gui/qt/mainwindow/mainwindowimpl.cpp +++ b/src/gui/qt/mainwindow/mainwindowimpl.cpp @@ -477,6 +477,9 @@ mainWindowImpl::mainWindowImpl(QMainWindow *parent) connect(this, SIGNAL(SignalNetClientSuccess(int)), myConnectToServerDialog, SLOT(refresh(int))); connect(this, SIGNAL(SignalNetClientError(int, int)), myConnectToServerDialog, SLOT(error(int, int))); + textBrowser_Log->append(QString::number(this->pos().x(),10)+" "+QString::number(this->pos().y(),10)); + textBrowser_Log->append(QString::number(this->x(),10)+" "+QString::number(this->y(),10)); + } mainWindowImpl::~mainWindowImpl() {}