diff options
author | Michele Calgaro <[email protected]> | 2023-11-07 19:27:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-07 19:27:43 +0900 |
commit | 818c8f1cd1fd849f857201eb8911434c514d6c3e (patch) | |
tree | 7d3b76bd03fb2bfd3dd8a11713dc28e7a88c069c /quanta/src | |
parent | a6f77b2087cbf3c4047f46b684c7ae33b7757ec1 (diff) | |
download | tdewebdev-818c8f1cd1fd849f857201eb8911434c514d6c3e.tar.gz tdewebdev-818c8f1cd1fd849f857201eb8911434c514d6c3e.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'quanta/src')
-rw-r--r-- | quanta/src/quanta.cpp | 4 | ||||
-rw-r--r-- | quanta/src/quantaview.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/quanta/src/quanta.cpp b/quanta/src/quanta.cpp index ada70492..c3e3713f 100644 --- a/quanta/src/quanta.cpp +++ b/quanta/src/quanta.cpp @@ -262,7 +262,7 @@ QuantaApp::QuantaApp(int mdiMode) : DCOPObject("WindowManagerIf"), KMdiMainFrm( m_parserEnabled = true; cursorLine = 0; cursorCol = 0; - emit eventHappened("quanta_start", TQDateTime::currentDateTime().toString(Qt::ISODate), TQString()); + emit eventHappened("quanta_start", TQDateTime::currentDateTime().toString(TQt::ISODate), TQString()); setAcceptDrops(true); tabWidget()->installEventFilter(this); } @@ -4145,7 +4145,7 @@ bool QuantaApp::queryClose() { saveOptions(); // kdDebug(24000) << "Quanta will exit" << endl; - emit eventHappened("quanta_exit", TQDateTime::currentDateTime().toString(Qt::ISODate), TQString()); + emit eventHappened("quanta_exit", TQDateTime::currentDateTime().toString(TQt::ISODate), TQString()); } else slotFileNew(); return canExit; diff --git a/quanta/src/quantaview.cpp b/quanta/src/quantaview.cpp index 18bb8b29..8003ce62 100644 --- a/quanta/src/quantaview.cpp +++ b/quanta/src/quantaview.cpp @@ -98,7 +98,7 @@ QuantaView::QuantaView(TQWidget *parent, const char *name, const TQString &capti m_toolbarTab ->setFocusPolicy( TQWidget::NoFocus ); //create a splitter to separate the VPL and document area - m_splitter = new TQSplitter(Qt::Vertical, this); + m_splitter = new TQSplitter(TQt::Vertical, this); //place the widgets in a grid m_viewLayout = new TQGridLayout(this, 2, 0); m_viewLayout->setRowStretch(0, 0); |