trinity-devel@lists.pearsoncomputing.net

Message: previous - next
Month: February 2012

Patch for last commit that causes tdebase to FTBFS

From: Darrell Anderson <humanreadable@...>
Date: Wed, 15 Feb 2012 19:24:41 -0800 (PST)
Failure:

tdebase/twin/kcmtwin/twindecoration/twindecoration.cpp:828: error: 'NoCommunication' was not declared in this scope

Patch:

diff -urN tdebase/twin/kcmtwin/twindecoration/twindecoration.cpp tdebase.new/twin/kcmtwin/twindecoration/twindecoration.cpp
--- tdebase/twin/kcmtwin/twindecoration/twindecoration.cpp  2012-02-15 13:26:30.000000000 -0600
+++ tdebase.new/twin/kcmtwin/twindecoration/twindecoration.cpp  2012-02-15 21:03:18.000000000 -0600
@@ -825,7 +825,7 @@
    wmstartupcommand.prepend(wmExecutableName);
    wmstartupcommand.append("--replace");
    newWMProc << wmstartupcommand;
-   newWMProc.start(KProcess::DontCare, NoCommunication);
+   newWMProc.start(KProcess::DontCare, KProcess::NoCommunication);
    newWMProc.detach();
  }
  conf->writeEntry("WMExecutable", wmExecutableName);


Darrell