diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:21:06 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:21:06 -0600 |
commit | 7d18baa666593a494ceea480732a8540ba471fe5 (patch) | |
tree | 1c656ba0da61a3bfcf4c4de730e66322865844fe /kpresenter/KPrCommand.cpp | |
parent | 951839808408bed4165fc025dbf00caf59ea319b (diff) | |
download | koffice-7d18baa666593a494ceea480732a8540ba471fe5.tar.gz koffice-7d18baa666593a494ceea480732a8540ba471fe5.zip |
Rename additional global TQt functions
Diffstat (limited to 'kpresenter/KPrCommand.cpp')
-rw-r--r-- | kpresenter/KPrCommand.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpresenter/KPrCommand.cpp b/kpresenter/KPrCommand.cpp index 50c31cf0..b2e6b348 100644 --- a/kpresenter/KPrCommand.cpp +++ b/kpresenter/KPrCommand.cpp @@ -1885,7 +1885,7 @@ KoTextCursor * KPrOasisPasteTextCommand::execute( KoTextCursor *c ) { KoTextParag *firstParag = doc->paragAt( m_parag ); if ( !firstParag ) { - qWarning( "can't locate parag at %d, last parag: %d", m_parag, doc->lastParag()->paragId() ); + tqWarning( "can't locate parag at %d, last parag: %d", m_parag, doc->lastParag()->paragId() ); return 0; } //kdDebug() << "KWOasisPasteCommand::execute m_parag=" << m_parag << " m_idx=" << m_idx @@ -1955,7 +1955,7 @@ KoTextCursor * KPrOasisPasteTextCommand::unexecute( KoTextCursor *c ) { KoTextParag *firstParag = doc->paragAt( m_parag ); if ( !firstParag ) { - qWarning( "can't locate parag at %d, last parag: %d", m_parag, doc->lastParag()->paragId() ); + tqWarning( "can't locate parag at %d, last parag: %d", m_parag, doc->lastParag()->paragId() ); return 0; } cursor.setParag( firstParag ); @@ -1964,7 +1964,7 @@ KoTextCursor * KPrOasisPasteTextCommand::unexecute( KoTextCursor *c ) KoTextParag *lastParag = doc->paragAt( m_lastParag ); if ( !lastParag ) { - qWarning( "can't locate parag at %d, last parag: %d", m_lastParag, doc->lastParag()->paragId() ); + tqWarning( "can't locate parag at %d, last parag: %d", m_lastParag, doc->lastParag()->paragId() ); return 0; } //Q_ASSERT( lastParag->document() ); |