summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/mainwindow.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.cpp74
1 files changed, 37 insertions, 37 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp
index 3fe9040..0a475d8 100644
--- a/noncore/apps/opie-console/mainwindow.cpp
+++ b/noncore/apps/opie-console/mainwindow.cpp
@@ -12,3 +12,3 @@
-#include <opie/ofiledialog.h>
+#include <opie2/ofiledialog.h>
@@ -335,3 +335,3 @@ void MainWindow::slotSaveScript() {
map.insert(tr("Script"), text );
- QString filename = OFileDialog::getSaveFileName(2, QPEApplication::documentDir(), QString::null, map);
+ QString filename = Opie::OFileDialog::getSaveFileName(2, QPEApplication::documentDir(), QString::null, map);
if (!filename.isEmpty()) {
@@ -449,4 +449,4 @@ void MainWindow::slotClose() {
qWarning("removing! currentSession %s", currentSession()->name().latin1() );
- /* set to NULL to be safe, if its needed slotSessionChanged resets it automatically */
- m_curSession = NULL;
+ /* set to NULL to be safe, if its needed slotSessionChanged resets it automatically */
+ m_curSession = NULL;
tabWidget()->remove( /*currentSession()*/ses );
@@ -485,4 +485,4 @@ void MainWindow::slotProfile( int id) {
void MainWindow::create( const Profile& prof ) {
- if(m_curSession)
- if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide();
+ if(m_curSession)
+ if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide();
@@ -491,9 +491,9 @@ void MainWindow::create( const Profile& prof ) {
if((!ses) || (!ses->layer()) || (!ses->widgetStack()))
- {
- QMessageBox::warning(this,
- QObject::tr("Session failed"),
- QObject::tr("<qt>Cannot open session: Not all components were found.</qt>"));
- //if(ses) delete ses;
- return;
- }
+ {
+ QMessageBox::warning(this,
+ QObject::tr("Session failed"),
+ QObject::tr("<qt>Cannot open session: Not all components were found.</qt>"));
+ //if(ses) delete ses;
+ return;
+ }
@@ -538,12 +538,12 @@ void MainWindow::slotTransfer()
if ( currentSession() ) {
- Session *mysession = currentSession();
- TransferDialog dlg(/*mysession->widgetStack()*/this, this);
- mysession->setTransferDialog(&dlg);
- //dlg.reparent(mysession->widgetStack(), QPoint(0, 0));
- //dlg.showMaximized();
- currentSession()->widgetStack()->addWidget(&dlg, -1);
- dlg.show();
- //dlg.exec();
- while(dlg.isRunning()) qApp->processEvents();
- mysession->setTransferDialog(0l);
+ Session *mysession = currentSession();
+ TransferDialog dlg(/*mysession->widgetStack()*/this, this);
+ mysession->setTransferDialog(&dlg);
+ //dlg.reparent(mysession->widgetStack(), QPoint(0, 0));
+ //dlg.showMaximized();
+ currentSession()->widgetStack()->addWidget(&dlg, -1);
+ dlg.show();
+ //dlg.exec();
+ while(dlg.isRunning()) qApp->processEvents();
+ mysession->setTransferDialog(0l);
}
@@ -574,6 +574,6 @@ void MainWindow::slotSessionChanged( Session* ses ) {
- if(m_curSession)
- if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide();
- if(ses)
- if(ses->transferDialog()) ses->transferDialog()->show();
+ if(m_curSession)
+ if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide();
+ if(ses)
+ if(ses->transferDialog()) ses->transferDialog()->show();
@@ -623,11 +623,11 @@ void MainWindow::slotWrap()
if(m_isWrapped)
- {
- e->setWrap(80);
- m_isWrapped = false;
- }
- else
- {
- e->setWrap(0);
- m_isWrapped = true;
- }
+ {
+ e->setWrap(80);
+ m_isWrapped = false;
+ }
+ else
+ {
+ e->setWrap(0);
+ m_isWrapped = true;
+ }
}
@@ -708,3 +708,3 @@ void MainWindow::slotSaveHistory() {
map.insert(tr("History"), text );
- QString filename = OFileDialog::getSaveFileName(2, QPEApplication::documentDir(), QString::null, map);
+ QString filename = Opie::OFileDialog::getSaveFileName(2, QPEApplication::documentDir(), QString::null, map);
if (filename.isEmpty() ) return;