From 2fa036d5898ffd3dee5f4c396b09c7d904c49b5e Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 27 Jan 2011 19:26:26 +0000 Subject: Aviod conflicts with Qt4 namespace members git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1217530 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kate/part/kateviewinternal.cpp | 40 ++++++++++++++++++++-------------------- kate/part/kateviewinternal.h | 6 +++--- 2 files changed, 23 insertions(+), 23 deletions(-) (limited to 'kate/part') diff --git a/kate/part/kateviewinternal.cpp b/kate/part/kateviewinternal.cpp index 34b098fb4..831866ef0 100644 --- a/kate/part/kateviewinternal.cpp +++ b/kate/part/kateviewinternal.cpp @@ -976,17 +976,17 @@ public: } void toEdge( Bias bias ) { - if( bias == left ) m_col = 0; - else if( bias == right ) m_col = m_vi->m_doc->lineLength( line() ); + if( bias == left_b ) m_col = 0; + else if( bias == right_b ) m_col = m_vi->m_doc->lineLength( line() ); } - bool atEdge() const { return atEdge( left ) || atEdge( right ); } + bool atEdge() const { return atEdge( left_b ) || atEdge( right_b ); } bool atEdge( Bias bias ) const { switch( bias ) { - case left: return col() == 0; - case none: return atEdge(); - case right: return col() == m_vi->m_doc->lineLength( line() ); + case left_b: return col() == 0; + case none: return atEdge(); + case right_b: return col() == m_vi->m_doc->lineLength( line() ); default: Q_ASSERT(false); return false; } } @@ -1107,7 +1107,7 @@ void KateViewInternal::cursorLeft( bool sel ) if ( ! m_view->wrapCursor() && cursor.col() == 0 ) return; - moveChar( left, sel ); + moveChar( left_b, sel ); if (m_view->m_codeCompletion->codeCompletionVisible()) { m_view->m_codeCompletion->updateBox(); } @@ -1115,7 +1115,7 @@ void KateViewInternal::cursorLeft( bool sel ) void KateViewInternal::cursorRight( bool sel ) { - moveChar( right, sel ); + moveChar( right_b, sel ); if (m_view->m_codeCompletion->codeCompletionVisible()) { m_view->m_codeCompletion->updateBox(); } @@ -1134,23 +1134,23 @@ void KateViewInternal::wordLeft ( bool sel ) // The code assumes that space is never part of the word character class. KateHighlighting* h = m_doc->highlight(); - if( !c.atEdge( left ) ) { + if( !c.atEdge( left_b ) ) { - while( !c.atEdge( left ) && m_doc->textLine( c.line() )[ c.col() - 1 ].isSpace() ) + while( !c.atEdge( left_b ) && m_doc->textLine( c.line() )[ c.col() - 1 ].isSpace() ) --c; } - if( c.atEdge( left ) ) + if( c.atEdge( left_b ) ) { --c; } else if( h->isInWord( m_doc->textLine( c.line() )[ c.col() - 1 ] ) ) { - while( !c.atEdge( left ) && h->isInWord( m_doc->textLine( c.line() )[ c.col() - 1 ] ) ) + while( !c.atEdge( left_b ) && h->isInWord( m_doc->textLine( c.line() )[ c.col() - 1 ] ) ) --c; } else { - while( !c.atEdge( left ) + while( !c.atEdge( left_b ) && !h->isInWord( m_doc->textLine( c.line() )[ c.col() - 1 ] ) // in order to stay symmetric to wordLeft() // we must not skip space preceding a non-word sequence @@ -1177,18 +1177,18 @@ void KateViewInternal::wordRight( bool sel ) // The code assumes that space is never part of the word character class. KateHighlighting* h = m_doc->highlight(); - if( c.atEdge( right ) ) + if( c.atEdge( right_b ) ) { ++c; } else if( h->isInWord( m_doc->textLine( c.line() )[ c.col() ] ) ) { - while( !c.atEdge( right ) && h->isInWord( m_doc->textLine( c.line() )[ c.col() ] ) ) + while( !c.atEdge( right_b ) && h->isInWord( m_doc->textLine( c.line() )[ c.col() ] ) ) ++c; } else { - while( !c.atEdge( right ) + while( !c.atEdge( right_b ) && !h->isInWord( m_doc->textLine( c.line() )[ c.col() ] ) // we must not skip space, because if that space is followed // by more non-word characters, we would skip them, too @@ -1198,7 +1198,7 @@ void KateViewInternal::wordRight( bool sel ) } } - while( !c.atEdge( right ) && m_doc->textLine( c.line() )[ c.col() ].isSpace() ) + while( !c.atEdge( right_b ) && m_doc->textLine( c.line() )[ c.col() ].isSpace() ) ++c; updateSelection( c, sel ); @@ -1232,7 +1232,7 @@ void KateViewInternal::home( bool sel ) } if( !(m_doc->configFlags() & KateDocument::cfSmartHome) ) { - moveEdge( left, sel ); + moveEdge( left_b, sel ); return; } @@ -1275,7 +1275,7 @@ void KateViewInternal::end( bool sel ) } if( !(m_doc->configFlags() & KateDocument::cfSmartHome) ) { - moveEdge( right, sel ); + moveEdge( right_b, sel ); return; } @@ -1294,7 +1294,7 @@ void KateViewInternal::end( bool sel ) updateSelection(c, sel); updateCursor(c, true); } else { - moveEdge(right, sel); + moveEdge(right_b, sel); } } diff --git a/kate/part/kateviewinternal.h b/kate/part/kateviewinternal.h index 6c765978e..0d706ffc3 100644 --- a/kate/part/kateviewinternal.h +++ b/kate/part/kateviewinternal.h @@ -45,9 +45,9 @@ class TQScrollBar; enum Bias { - left = -1, - none = 0, - right = 1 + left_b = -1, + none = 0, + right_b = 1 }; class KateViewInternal : public TQWidget -- cgit v1.2.1