필터 업데이트
애널저 숫자 정렬 추가 git-svn-id: svn://192.168.0.12/source@280 8346c931-da38-4b9b-9d4c-e48b93cbd075
This commit is contained in:
@@ -251,7 +251,7 @@ void SBatchRun::ViewResult()
|
||||
for (int k = 0; k < pTable->columnCount() ; k++)
|
||||
{
|
||||
QString str = m_vecData[i][j][k].replace("\n"," ");
|
||||
pTable->setItem(nCount,k,new QTableWidgetItem(" "+str.replace("\t"," ")+" "));
|
||||
pTable->setItem(nCount,k,new STableWidgetItem(" "+str.replace("\t"," ")+" "));
|
||||
}
|
||||
nCount++;
|
||||
GetMainWindow()->m_progress.setValue(nCount);
|
||||
@@ -319,7 +319,7 @@ void SBatchRun::ViewRawResult()
|
||||
for (int k = 0; k < pTable->columnCount() ; k++)
|
||||
{
|
||||
QString str = m_vecData[i][j][k].replace("\n"," ");
|
||||
pTable->setItem(nCount,k,new QTableWidgetItem(" "+str.replace("\t"," ")+" "));
|
||||
pTable->setItem(nCount,k,new STableWidgetItem(" "+str.replace("\t"," ")+" "));
|
||||
}
|
||||
nCount++;
|
||||
GetMainWindow()->m_progress.setValue(nCount);
|
||||
@@ -503,13 +503,13 @@ bool SBatchRun::loadData()
|
||||
for(int j = 0; j < GetColumn().data().size(); j++)
|
||||
//strList << " " + query.value(j).toString() + " ";
|
||||
strList.append(query.value(j).toString());
|
||||
|
||||
/*
|
||||
if(strList[m_anData[E_DATA_platform_form]].trimmed() == "post" || strList[m_anData[E_DATA_platform_form]].trimmed() == "story" || strList[m_anData[E_DATA_platform_form]].trimmed() == "channel")
|
||||
strList[m_anData[E_DATA_platform_form]] = "sns";
|
||||
|
||||
if(strList[m_anData[E_DATA_platform_form]].trimmed() == "group")
|
||||
strList[m_anData[E_DATA_platform_form]] = "community";
|
||||
|
||||
*/
|
||||
|
||||
if(i == E_ARTICLE_BODY)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user