diff options
author | Michele Calgaro <[email protected]> | 2025-01-22 17:46:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 22:38:49 +0900 |
commit | 4a47c1bfffffad7094f0b5c7cef532069e088ec3 (patch) | |
tree | 31b86dd0d87816e4b31e8bc2aa7687b2e85c2e82 /src/noteedit.cpp | |
parent | 7975b08418486c2793bd61c32ee347ce6b81c687 (diff) | |
download | basket-4a47c1bfffffad7094f0b5c7cef532069e088ec3.tar.gz basket-4a47c1bfffffad7094f0b5c7cef532069e088ec3.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/noteedit.cpp')
-rw-r--r-- | src/noteedit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/noteedit.cpp b/src/noteedit.cpp index a3798e3..55c602c 100644 --- a/src/noteedit.cpp +++ b/src/noteedit.cpp @@ -146,7 +146,7 @@ TextEditor::TextEditor(TextContent *textContent, TQWidget *parent) if (Settings::spellCheckTextNotes()) textEdit->setCheckSpellingEnabled(true); textEdit->setText(m_textContent->text()); - textEdit->moveCursor(KTextEdit::MoveEnd, false); // FIXME: Sometimes, the cursor flicker at ends before being positionned where clicked (because kapp->processEvents() I think) + textEdit->moveCursor(KTextEdit::MoveEnd, false); // FIXME: Sometimes, the cursor flicker at ends before being positionned where clicked (because tdeApp->processEvents() I think) textEdit->verticalScrollBar()->setCursor(TQt::ArrowCursor); setInlineEditor(textEdit); connect( textEdit, TQ_SIGNAL(escapePressed()), this, TQ_SIGNAL(askValidation()) ); @@ -604,7 +604,7 @@ LinkEditDialog::LinkEditDialog(LinkContent *contentNote, TQWidget *parent/*, TQK urlChanged(""); // if (ke) -// kapp->postEvent(m_url->lineEdit(), ke); +// tdeApp->postEvent(m_url->lineEdit(), ke); } LinkEditDialog::~LinkEditDialog() |