mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Make filter UI comply with capitalisation style
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
ecb91f9eb5
commit
683f4dc3fe
4 changed files with 5 additions and 5 deletions
|
@ -19,7 +19,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>TextLabel</string>
|
<string>Text label</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -837,7 +837,7 @@ p, li { white-space: pre-wrap; }
|
||||||
</action>
|
</action>
|
||||||
<action name="actionFilterTags">
|
<action name="actionFilterTags">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Filter by Tags</string>
|
<string>&Filter by tags</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="shortcut">
|
<property name="shortcut">
|
||||||
<string>Ctrl+F</string>
|
<string>Ctrl+F</string>
|
||||||
|
|
|
@ -2427,7 +2427,7 @@ void BuddyFilterModel::repopulate()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
qSort(list);
|
qSort(list);
|
||||||
list << tr("No Buddies");
|
list << tr("No buddies");
|
||||||
setStringList(list);
|
setStringList(list);
|
||||||
delete[] checkState;
|
delete[] checkState;
|
||||||
checkState = new bool[list.count()];
|
checkState = new bool[list.count()];
|
||||||
|
@ -2544,7 +2544,7 @@ void LocationFilterModel::repopulate()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
qSort(list);
|
qSort(list);
|
||||||
list << tr("No Location set");
|
list << tr("No location set");
|
||||||
setStringList(list);
|
setStringList(list);
|
||||||
delete[] checkState;
|
delete[] checkState;
|
||||||
checkState = new bool[list.count()];
|
checkState = new bool[list.count()];
|
||||||
|
|
|
@ -485,7 +485,7 @@ BuddyFilter::BuddyFilter(QWidget *parent) : QWidget(parent)
|
||||||
{
|
{
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
ui.label->setText(tr("Person: "));
|
ui.label->setText(tr("Person: "));
|
||||||
ui.label->setToolTip(tr("Searches for Buddies and Divemasters"));
|
ui.label->setToolTip(tr("Searches for buddies and divemasters"));
|
||||||
#if QT_VERSION >= 0x050000
|
#if QT_VERSION >= 0x050000
|
||||||
ui.filterInternalList->setClearButtonEnabled(true);
|
ui.filterInternalList->setClearButtonEnabled(true);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue