astyle formatting
This commit is contained in:
parent
556ef9afcf
commit
676e0d2c70
|
@ -38,29 +38,31 @@ void ApplicationList::LoadSettings(QSettings *programSettings)
|
|||
QStringList names = programSettings->value(SETTINGS_APPLICATION_NAMES, QStringList()).toStringList();
|
||||
QStringList paths = programSettings->value(SETTINGS_APPLICATION_PATHS, QStringList()).toStringList();
|
||||
|
||||
if (names.empty() && paths.empty())
|
||||
{
|
||||
do {
|
||||
// use as default for gnome environments
|
||||
if (QFileInfo("/usr/bin/gedit").isExecutable())
|
||||
{
|
||||
AddApplicationType("gedit", "/usr/bin/gedit +(line) (file)");
|
||||
break;
|
||||
}
|
||||
// use as default for kde environments
|
||||
if (QFileInfo("/usr/bin/kate").isExecutable())
|
||||
{
|
||||
AddApplicationType("kate", "/usr/bin/kate -l(line) (file)");
|
||||
break;
|
||||
}
|
||||
// use as default for windows environments
|
||||
if (QFileInfo("%PROGRAMFILES%\\Notepad++\\notepad++.exe").isExecutable())
|
||||
{
|
||||
AddApplicationType("notepad++", "%PROGRAMFILES%\\Notepad++\\notepad++.exe -n(line) (file)");
|
||||
break;
|
||||
}
|
||||
} while ( 0 );
|
||||
}
|
||||
if (names.empty() && paths.empty())
|
||||
{
|
||||
do
|
||||
{
|
||||
// use as default for gnome environments
|
||||
if (QFileInfo("/usr/bin/gedit").isExecutable())
|
||||
{
|
||||
AddApplicationType("gedit", "/usr/bin/gedit +(line) (file)");
|
||||
break;
|
||||
}
|
||||
// use as default for kde environments
|
||||
if (QFileInfo("/usr/bin/kate").isExecutable())
|
||||
{
|
||||
AddApplicationType("kate", "/usr/bin/kate -l(line) (file)");
|
||||
break;
|
||||
}
|
||||
// use as default for windows environments
|
||||
if (QFileInfo("%PROGRAMFILES%\\Notepad++\\notepad++.exe").isExecutable())
|
||||
{
|
||||
AddApplicationType("notepad++", "%PROGRAMFILES%\\Notepad++\\notepad++.exe -n(line) (file)");
|
||||
break;
|
||||
}
|
||||
}
|
||||
while (0);
|
||||
}
|
||||
|
||||
if (names.size() == paths.size())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue