Minor style changes

Use 'git diff -w --ignore-all-space' for non-whitespace changes.
This commit is contained in:
Kurt Hindenburg
2012-01-03 11:37:27 -05:00
parent aa9f6ccc95
commit ba77864413
2 changed files with 17 additions and 14 deletions

View File

@@ -233,7 +233,6 @@ void Application::processTabsFromFileArgs(KCmdLineArgs* args,
QString key = lineParts.at(i).section(':', 0, 0).trimmed().toLower();
QString value = lineParts.at(i).section(':', 1, 1).trimmed();
lineTokens[key] = value;
}
// command: is the only token required
if (lineTokens.contains("command")) {
@@ -323,7 +322,8 @@ void Application::processProfileSelectArgs(KCmdLineArgs* args,
MainWindow* window)
{
if (args->isSet("profile")) {
Profile::Ptr profile = SessionManager::instance()->loadProfile(args->getOption("profile"));
Profile::Ptr profile = SessionManager::instance()->loadProfile(
args->getOption("profile"));
if (!profile)
profile = SessionManager::instance()->defaultProfile();