From: <si...@us...> - 2011-10-17 13:31:48
|
Revision: 1299 http://qterm.svn.sourceforge.net/qterm/?rev=1299&view=rev Author: sidos Date: 2011-10-17 13:31:37 +0000 (Mon, 17 Oct 2011) Log Message: ----------- or is not prefered Modified Paths: -------------- trunk/qterm-qt4/src/termstring.cpp Modified: trunk/qterm-qt4/src/termstring.cpp =================================================================== --- trunk/qterm-qt4/src/termstring.cpp 2011-10-16 18:58:15 UTC (rev 1298) +++ trunk/qterm-qt4/src/termstring.cpp 2011-10-17 13:31:37 UTC (rev 1299) @@ -178,7 +178,7 @@ bool TermString::isPartial(int index) { - if (index < 0 or index >= m_index.size()) { + if (index < 0 || index >= m_index.size()) { qDebug() << "length " << m_index.size() << ", index: " << index; return false; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |