filterprocess consumer / spammer 그래프 수정
카카오스토리 modified date가 위로 올라오는 문제로 인해 과거 댓글이 그래프구간에 영향을 끼치는 문제 수정 git-svn-id: svn://192.168.0.12/source@325 8346c931-da38-4b9b-9d4c-e48b93cbd075
This commit is contained in:
@@ -246,10 +246,12 @@ void Widget::Refresh()
|
||||
m_plw[i].clear();
|
||||
|
||||
{
|
||||
QSqlQuery query("select id,name from filtergroup");
|
||||
QSqlQuery query("select id,name,locked from filtergroup");
|
||||
while (query.next())
|
||||
{
|
||||
QListWidgetItem *pItem = new QListWidgetItem(query.value(1).toString(),&m_plw[E_LIST_FILTER]);
|
||||
QListWidgetItem *pItem = new QListWidgetItem(query.value(1).toString() +
|
||||
((query.value(2).toInt() == 0)? "" : " (Locked)")
|
||||
,&m_plw[E_LIST_FILTER]);
|
||||
pItem->setData(Qt::UserRole, QVariant(query.value(0)));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user