[Qt] very minor style cleanups

- rebuilt some ui file layout to remove unreal values from the files
- remove an unneeded attribute from an ui file
- add / remove some spaces in files
This commit is contained in:
Philip Kaufmann
2014-01-22 09:46:15 +01:00
parent 2f06b5965a
commit 4bee715bfd
8 changed files with 36 additions and 39 deletions

View File

@@ -18,7 +18,7 @@ class RecentRequestEntry
public:
RecentRequestEntry() : nVersion(RecentRequestEntry::CURRENT_VERSION), id(0) { }
static const int CURRENT_VERSION=1;
static const int CURRENT_VERSION = 1;
int nVersion;
int64_t id;
QDateTime date;
@@ -46,7 +46,7 @@ class RecentRequestEntryLessThan
public:
RecentRequestEntryLessThan(int nColumn, Qt::SortOrder fOrder):
column(nColumn), order(fOrder) {}
bool operator()(RecentRequestEntry &left, RecentRequestEntry &right ) const;
bool operator()(RecentRequestEntry &left, RecentRequestEntry &right) const;
private:
int column;