mirror of
https://github.com/KDE/konsole.git
synced 2026-05-03 12:15:33 -04:00
Changes:
* Add a passive warning widget which is displayed when a color scheme is selected which
uses transparency but the system does not support transparency
* Always show the vertical scroll bar in the color scheme list
* Remove quotes around links and email addresses in mouse-over tooltip
Bug Fixes:
* Fix a few odd behaviours with the live color scheme preview
* Fix the 'Show in Menu' status of newly added profiles not being
saved when Konsole exits.
( Update Profile's path property when saving the profile to
a new location )
Internal:
* Removed many debugging statements and dead / commented out code
* Fix several unused parameter warnings
* API documentation corrections in Emulation class
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=706986
This commit is contained in:
@@ -56,8 +56,6 @@ ShellCommand::ShellCommand(const QString& fullCommand)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//qDebug() << "Arguments:" << _arguments;
|
||||
}
|
||||
ShellCommand::ShellCommand(const QString& command , const QStringList& arguments)
|
||||
{
|
||||
@@ -110,13 +108,11 @@ QString ShellCommand::expand(const QString& text)
|
||||
/*
|
||||
* expandEnv
|
||||
*
|
||||
* Expand environment variables in text. Escaped '$' are ignored.
|
||||
* Return true if expansion was made.
|
||||
* Expand environment variables in text. Escaped '$' characters are ignored.
|
||||
* Return true if any variables were expanded
|
||||
*/
|
||||
static bool expandEnv( QString &text )
|
||||
{
|
||||
qDebug() << "Expanding text: " << text;
|
||||
|
||||
// Find all environment variables beginning with '$'
|
||||
//
|
||||
int pos = 0;
|
||||
@@ -165,7 +161,5 @@ static bool expandEnv( QString &text )
|
||||
}
|
||||
}
|
||||
|
||||
qDebug() << "Expanded to" << text;
|
||||
|
||||
return expanded;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user