* 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:
Robert Knight
2007-08-31 17:56:35 +00:00
parent 38458e7927
commit 42dce0374c
13 changed files with 160 additions and 283 deletions

View File

@@ -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;
}