diff -r 557239819c45 -r 70c41284cb48 texteditor.cpp --- a/texteditor.cpp Wed Aug 30 12:16:25 2006 +0000 +++ b/texteditor.cpp Thu Aug 31 11:55:33 2006 +0000 @@ -305,7 +305,7 @@ actionEditDeleteAll=a; a = new QAction(QPixmap(), tr( "&Convert Paragraphs" ),this); - /* FIXME not needed any longer? remove also from docu... + /* TODO not needed any longer? remove also from docu... a->setStatusTip(tr( "Convert paragraphs to linebreaks" )); a->setShortcut( Qt::ALT + Qt::Key_P ); connect( a, SIGNAL( activated() ), this, SLOT( textConvertPar() ) ); @@ -314,7 +314,7 @@ actionEditConvertPar=a; a = new QAction( QPixmap(), tr( "&Join lines" ), this); - /* FIXME not needed any longer? remove also from docu... + /* TODO not needed any longer? remove also from docu... a->setStatusTip(tr( "Join all lines of a paragraph" ) ); a->setShortcut(Qt::ALT + Qt::Key_J ); connect( a, SIGNAL( activated() ), this, SLOT( textJoinLines() ) ); @@ -662,7 +662,7 @@ t.replace ("

","
"); e->setText(t); - /* FIXME QT3 use seletion () + /* TODO QT3 use seletion () int parFrom, parTo, indFrom, indTo; e->getSelection (&parFrom,&indFrom,&parTo,&indTo); if (parFrom>-1) @@ -692,7 +692,7 @@ void TextEditor::textJoinLines() { -/* FIXME QT3 +/* TODO QT3 int parFrom, parTo, indFrom, indTo; e->getSelection (&parFrom,&indFrom,&parTo,&indTo); QString t; @@ -879,7 +879,7 @@ void TextEditor::textVAlign() { -/* FIXME QT3 +/* FIXME QT3 alignment if ( sender() == actionAlignSuperScript && actionAlignSuperScript->isOn()) { e->setVerticalAlignment( QTextEdit::AlignSuperScript); } else if (sender() == actionAlignSubScript && actionAlignSubScript->isOn()) { @@ -923,7 +923,7 @@ void TextEditor::verticalAlignmentChanged(int a) { - /* FIXME QT3 + /* FIXME QT3 alignment if (a == QTextEdit::AlignSuperScript ) { actionAlignSuperScript->setOn(true); actionAlignSubScript->setOn(false);