diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2014-11-01 00:07:15 +0000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-11-01 09:27:18 -0700 |
commit | 683f4dc3fe2ccad7a3d065f1475fd2c77f63ec87 (patch) | |
tree | eb0a9817ffab211d68c850c20bbc5384bcfcc1a1 /qt-ui/models.cpp | |
parent | ecb91f9eb5ebc803a44c8e7c104235f528ab9704 (diff) | |
download | subsurface-683f4dc3fe2ccad7a3d065f1475fd2c77f63ec87.tar.gz |
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>
Diffstat (limited to 'qt-ui/models.cpp')
-rw-r--r-- | qt-ui/models.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index da4dc4ff1..89afb1187 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -2427,7 +2427,7 @@ void BuddyFilterModel::repopulate() } } qSort(list); - list << tr("No Buddies"); + list << tr("No buddies"); setStringList(list); delete[] checkState; checkState = new bool[list.count()]; @@ -2544,7 +2544,7 @@ void LocationFilterModel::repopulate() } } qSort(list); - list << tr("No Location set"); + list << tr("No location set"); setStringList(list); delete[] checkState; checkState = new bool[list.count()]; |