mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
fixed display issues: always -> all and void string -> unknown for turtle hashes
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2303 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
6c7ce4f3e2
commit
63b51f5792
@ -669,7 +669,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<widget class="QComboBox" name="indicatorCBox">
|
<widget class="QComboBox" name="indicatorCBox">
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Always</string>
|
<string>All</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
<iconset resource="images.qrc">
|
<iconset resource="images.qrc">
|
||||||
|
@ -94,7 +94,7 @@ void TurtleRouterDialog::fillTable(QTableWidget *table,const std::vector<std::ve
|
|||||||
table->insertRow(i) ;
|
table->insertRow(i) ;
|
||||||
|
|
||||||
for(uint j=0;j<data[i].size();++j)
|
for(uint j=0;j<data[i].size();++j)
|
||||||
table->setItem(i,j,new QTableWidgetItem(QString::fromStdString(data[i][j]))) ;
|
table->setItem(i,j,new QTableWidgetItem(QString::fromStdString(data[i][j].empty()?"Unknown":data[i][j]))) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(uint i=data.size();i<table->rowCount();)
|
for(uint i=data.size();i<table->rowCount();)
|
||||||
|
Loading…
Reference in New Issue
Block a user