Use common format for all include guards and avoid leading underscores

Use a common format for all include guards, make sure each header file
has one and make sure it's named after the file name.

And as a random extra in this commit: Make sure the gen_version.h file
generated by cmake ends with a line break.

Closes #59.
This commit is contained in:
Martin Kleusberg
2014-07-31 21:30:56 +02:00
parent 5f4066c351
commit ba75bd16fe
18 changed files with 43 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
#ifndef __EDITTABLEDIALOG_H__
#define __EDITTABLEDIALOG_H__
#ifndef EDITTABLEDIALOG_H
#define EDITTABLEDIALOG_H
#include "sqlitetypes.h"