texteditor.cpp
branchqt4-port
changeset 18 70c41284cb48
parent 13 9aadd0f58300
     1.1 --- a/texteditor.cpp	Wed Aug 30 12:16:25 2006 +0000
     1.2 +++ b/texteditor.cpp	Thu Aug 31 11:55:33 2006 +0000
     1.3 @@ -305,7 +305,7 @@
     1.4  	actionEditDeleteAll=a;
     1.5  
     1.6  	a = new QAction(QPixmap(), tr( "&Convert Paragraphs" ),this);
     1.7 -	/* FIXME not needed any longer? remove also from docu...
     1.8 +	/* TODO not needed any longer? remove also from docu...
     1.9  	a->setStatusTip(tr( "Convert paragraphs to linebreaks" )); 
    1.10  	a->setShortcut( Qt::ALT + Qt::Key_P );
    1.11      connect( a, SIGNAL( activated() ), this, SLOT( textConvertPar() ) );
    1.12 @@ -314,7 +314,7 @@
    1.13  	actionEditConvertPar=a;
    1.14  
    1.15  	a = new QAction( QPixmap(), tr( "&Join lines" ), this);
    1.16 -	/* FIXME not needed any longer? remove also from docu...
    1.17 +	/* TODO not needed any longer? remove also from docu...
    1.18  	a->setStatusTip(tr( "Join all lines of a paragraph" ) ); 
    1.19  	a->setShortcut(Qt::ALT + Qt::Key_J );
    1.20      connect( a, SIGNAL( activated() ), this, SLOT( textJoinLines() ) );
    1.21 @@ -662,7 +662,7 @@
    1.22  	t.replace ("</p>","<br />");
    1.23  	e->setText(t);
    1.24  
    1.25 -	/* FIXME QT3 use seletion ()
    1.26 +	/* TODO QT3 use seletion ()
    1.27  	int parFrom, parTo, indFrom, indTo;
    1.28  	e->getSelection (&parFrom,&indFrom,&parTo,&indTo);
    1.29  	if (parFrom>-1)
    1.30 @@ -692,7 +692,7 @@
    1.31  
    1.32  void TextEditor::textJoinLines()
    1.33  {
    1.34 -/* FIXME QT3
    1.35 +/* TODO  QT3
    1.36  	int parFrom, parTo, indFrom, indTo;
    1.37  	e->getSelection (&parFrom,&indFrom,&parTo,&indTo);
    1.38  	QString t;
    1.39 @@ -879,7 +879,7 @@
    1.40  
    1.41  void TextEditor::textVAlign()
    1.42  {
    1.43 -/* FIXME QT3
    1.44 +/* FIXME QT3 alignment
    1.45      if ( sender() == actionAlignSuperScript && actionAlignSuperScript->isOn()) {
    1.46  	e->setVerticalAlignment( QTextEdit::AlignSuperScript);
    1.47      } else if (sender() == actionAlignSubScript && actionAlignSubScript->isOn()) {
    1.48 @@ -923,7 +923,7 @@
    1.49  
    1.50  void TextEditor::verticalAlignmentChanged(int a) 
    1.51  {
    1.52 -	/* FIXME QT3
    1.53 +	/* FIXME QT3 alignment
    1.54      if (a == QTextEdit::AlignSuperScript ) {
    1.55  	actionAlignSuperScript->setOn(true);
    1.56  	actionAlignSubScript->setOn(false);