mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 10:22:52 +00:00
fix QString and char* concentration
This commit is contained in:
parent
d142c5f090
commit
8224a93270
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ set(VERSION_MINOR "1")
|
|||
set(VERSION_RELEASE "0")
|
||||
set(VERSION_SUFFIX "")
|
||||
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}${VERSION_SUFFIX})
|
||||
add_definitions(-D'VERSION="${VERSION}"')
|
||||
add_definitions(-DVERSION="${VERSION}")
|
||||
|
||||
set(KDE_MIN_VERSION 4.4)
|
||||
find_package(KDE4 REQUIRED)
|
||||
|
|
|
@ -92,7 +92,7 @@ ExternalCommand::~ExternalCommand()
|
|||
|
||||
void ExternalCommand::setup()
|
||||
{
|
||||
setEnvironment(QStringList() << "LC_ALL=C" << QString("PATH=") + getenv("PATH"));
|
||||
setEnvironment(QStringList() << "LC_ALL=C" << QString("PATH=") + QString(getenv("PATH")));
|
||||
setProcessChannelMode(MergedChannels);
|
||||
|
||||
processes = new QProcess[command().size()];
|
||||
|
|
Loading…
Add table
Reference in a new issue