diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-05-21 20:31:56 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-21 20:37:32 -0700 |
commit | 6d3a4ec9b28ac794ae8e9a6231272e2ebe573af5 (patch) | |
tree | 03b314ea76256fbcf3c5887209ffc150fbbca425 /main.c | |
parent | 238c80a70888f6f1850083205e2177d71254c0ae (diff) | |
download | subsurface-6d3a4ec9b28ac794ae8e9a6231272e2ebe573af5.tar.gz |
Initialize QSettings earlier & change the Organization to "Subsurface"
The first change allows the default_filename to be found again.
The second change switches us to .config/Subsurface/Subsurface.conf which
I find much more useful.
QtCreator also fixed a few indentation issues for me. How helpful.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -217,7 +217,7 @@ int main(int argc, char **argv) subsurface_command_line_init(&argc, &argv); parse_xml_init(); - init_ui(&argc, &argv); /* the gtk stuff is needed for parsing below */ + init_ui(&argc, &argv); for (i = 1; i < argc; i++) { const char *a = argv[i]; |