mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
White space and clarifying braces
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
8f4a047cf0
commit
b19db6afb5
2 changed files with 13 additions and 10 deletions
|
@ -19,7 +19,8 @@
|
|||
#include <QEventLoop>
|
||||
#include <QTimer>
|
||||
|
||||
ReverseGeoLookupThread* ReverseGeoLookupThread::instance() {
|
||||
ReverseGeoLookupThread* ReverseGeoLookupThread::instance()
|
||||
{
|
||||
static ReverseGeoLookupThread* self = new ReverseGeoLookupThread();
|
||||
return self;
|
||||
}
|
||||
|
@ -28,8 +29,8 @@ ReverseGeoLookupThread::ReverseGeoLookupThread(QObject *obj) : QThread(obj)
|
|||
{
|
||||
}
|
||||
|
||||
void ReverseGeoLookupThread::run() {
|
||||
|
||||
void ReverseGeoLookupThread::run()
|
||||
{
|
||||
QNetworkRequest request;
|
||||
QNetworkAccessManager *rgl = new QNetworkAccessManager();
|
||||
QEventLoop loop;
|
||||
|
|
|
@ -51,20 +51,22 @@ int taxonomy_index_for_category(struct taxonomy_data *t, enum taxonomy_category
|
|||
|
||||
const char *taxonomy_get_country(struct taxonomy_data *t)
|
||||
{
|
||||
for (int i = 0; i < t->nr; i++)
|
||||
for (int i = 0; i < t->nr; i++) {
|
||||
if (t->category[i].category == TC_COUNTRY)
|
||||
return t->category[i].value;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void taxonomy_set_country(struct taxonomy_data *t, const char *country, enum taxonomy_origin origin)
|
||||
{
|
||||
int idx = -1;
|
||||
for (int i = 0; i < t->nr; i++)
|
||||
for (int i = 0; i < t->nr; i++) {
|
||||
if (t->category[i].category == TC_COUNTRY) {
|
||||
idx = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (idx == -1) {
|
||||
if (t->nr == TC_NR_CATEGORIES - 1) {
|
||||
// can't add another one
|
||||
|
|
Loading…
Add table
Reference in a new issue