mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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>
This commit is contained in:
parent
238c80a708
commit
6d3a4ec9b2
2 changed files with 6 additions and 6 deletions
2
main.c
2
main.c
|
@ -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];
|
||||
|
|
10
qt-gui.cpp
10
qt-gui.cpp
|
@ -39,7 +39,7 @@ public:
|
|||
~Translator() {}
|
||||
|
||||
virtual QString translate(const char *context, const char *sourceText,
|
||||
const char *disambiguation = NULL) const;
|
||||
const char *disambiguation = NULL) const;
|
||||
};
|
||||
|
||||
Translator::Translator(QObject *parent):
|
||||
|
@ -48,7 +48,7 @@ Translator::Translator(QObject *parent):
|
|||
}
|
||||
|
||||
QString Translator::translate(const char *context, const char *sourceText,
|
||||
const char *disambiguation) const
|
||||
const char *disambiguation) const
|
||||
{
|
||||
return gettext(sourceText);
|
||||
}
|
||||
|
@ -61,9 +61,6 @@ const char *existing_filename;
|
|||
void init_qt_ui(int *argcp, char ***argvp)
|
||||
{
|
||||
application->installTranslator(new Translator(application));
|
||||
QCoreApplication::setOrganizationName("hohndel");
|
||||
QCoreApplication::setOrganizationDomain("hohndel.org");
|
||||
QCoreApplication::setApplicationName("Subsurface");
|
||||
MainWindow *window = new MainWindow();
|
||||
window->show();
|
||||
}
|
||||
|
@ -80,6 +77,9 @@ void init_ui(int *argcp, char ***argvp)
|
|||
// [http://www.iana.org/assignments/character-sets/character-sets.xml]
|
||||
QTextCodec::setCodecForCStrings(QTextCodec::codecForMib(106));
|
||||
#endif
|
||||
QCoreApplication::setOrganizationName("Subsurface");
|
||||
QCoreApplication::setOrganizationDomain("subsurface.hohndel.org");
|
||||
QCoreApplication::setApplicationName("Subsurface");
|
||||
|
||||
QSettings settings;
|
||||
settings.beginGroup("GeneralSettings");
|
||||
|
|
Loading…
Reference in a new issue