1.형태소분석 centerkeyword 방식 추가
2.일괄처리방식 search 마지막에 스페이스 있을 경우 분석결과가 나오지 않는 오류
3.형태소분석 위젯 순서 변경
4.anlayzer new column 할 경우 QTableWidgetItem(QString(" ")) 수행되도록 수정
5.엑셀에서 붙혀 넣기할 때 row 가 추가될 경우 빈 cell에 공백 추가하기(4번과 유사함)
git-svn-id: svn://192.168.0.12/source@255 8346c931-da38-4b9b-9d4c-e48b93cbd075
This commit is contained in:
@@ -89,6 +89,12 @@ YAlgorithm* YAFactory::getYAlgorithm(QMap<QString, QString> mapParam)
|
||||
m_mapAlgorithm.insert("twodeptha", new YTwoDepthAAlgorithm());
|
||||
Algorithm = m_mapAlgorithm.value("twodeptha");
|
||||
}
|
||||
else if(mapParam.value("Algorithm").compare("centerkeyword", Qt::CaseInsensitive) == 0)
|
||||
{
|
||||
if(!m_mapAlgorithm.contains("centerkeyword"))
|
||||
m_mapAlgorithm.insert("centerkeyword", new YAlgorithm());
|
||||
Algorithm = m_mapAlgorithm.value("centerkeyword");
|
||||
}
|
||||
else
|
||||
{
|
||||
Algorithm = NULL;
|
||||
|
||||
Reference in New Issue
Block a user