|
|
|
@ -1067,10 +1067,10 @@ bool findParenthesesGroups( const TQString& s, TQStringList& sl )
|
|
|
|
|
sl.push_back( s.mid( startPos+1, i-startPos-1 ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return startPosStack.empty(); // false if tqparentheses don't match
|
|
|
|
|
return startPosStack.empty(); // false if parentheses don't match
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TQString calcHistorySortKey( const TQString& keyOrder, TQRegExp& matchedRegExpr, const TQStringList& tqparenthesesGroupList )
|
|
|
|
|
TQString calcHistorySortKey( const TQString& keyOrder, TQRegExp& matchedRegExpr, const TQStringList& parenthesesGroupList )
|
|
|
|
|
{
|
|
|
|
|
TQStringList keyOrderList = TQStringList::split(',', keyOrder );
|
|
|
|
|
TQString key;
|
|
|
|
@ -1080,7 +1080,7 @@ TQString calcHistorySortKey( const TQString& keyOrder, TQRegExp& matchedRegExpr,
|
|
|
|
|
continue;
|
|
|
|
|
bool bOk=false;
|
|
|
|
|
int groupIdx = (*keyIt).toInt(&bOk);
|
|
|
|
|
if (!bOk || groupIdx<0 || groupIdx >(int)tqparenthesesGroupList.size() )
|
|
|
|
|
if (!bOk || groupIdx<0 || groupIdx >(int)parenthesesGroupList.size() )
|
|
|
|
|
continue;
|
|
|
|
|
TQString s = matchedRegExpr.cap( groupIdx );
|
|
|
|
|
if ( groupIdx == 0 )
|
|
|
|
@ -1089,7 +1089,7 @@ TQString calcHistorySortKey( const TQString& keyOrder, TQRegExp& matchedRegExpr,
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TQString groupRegExp = tqparenthesesGroupList[groupIdx-1];
|
|
|
|
|
TQString groupRegExp = parenthesesGroupList[groupIdx-1];
|
|
|
|
|
if( groupRegExp.tqfind('|')<0 || groupRegExp.tqfind('(')>=0 )
|
|
|
|
|
{
|
|
|
|
|
bool bOk = false;
|
|
|
|
@ -1137,8 +1137,8 @@ void MergeResultWindow::collectHistoryInformation(
|
|
|
|
|
TQRegExp historyStart = m_pOptionDialog->m_historyStartRegExp;
|
|
|
|
|
++id3l; // Skip line with "$Log ... $"
|
|
|
|
|
TQRegExp newHistoryEntry = m_pOptionDialog->m_historyEntryStartRegExp;
|
|
|
|
|
TQStringList tqparenthesesGroups;
|
|
|
|
|
findParenthesesGroups( m_pOptionDialog->m_historyEntryStartRegExp, tqparenthesesGroups );
|
|
|
|
|
TQStringList parenthesesGroups;
|
|
|
|
|
findParenthesesGroups( m_pOptionDialog->m_historyEntryStartRegExp, parenthesesGroups );
|
|
|
|
|
TQString key;
|
|
|
|
|
MergeEditLineList melList;
|
|
|
|
|
bool bPrevLineIsEmpty = true;
|
|
|
|
@ -1171,7 +1171,7 @@ void MergeResultWindow::collectHistoryInformation(
|
|
|
|
|
if ( ! bUseRegExp )
|
|
|
|
|
key = sLine;
|
|
|
|
|
else
|
|
|
|
|
key = calcHistorySortKey(m_pOptionDialog->m_historyEntryStartSortKeyOrder,newHistoryEntry,tqparenthesesGroups);
|
|
|
|
|
key = calcHistorySortKey(m_pOptionDialog->m_historyEntryStartSortKeyOrder,newHistoryEntry,parenthesesGroups);
|
|
|
|
|
|
|
|
|
|
melList.clear();
|
|
|
|
|
melList.push_back( MergeEditLine(id3l,src) );
|
|
|
|
|