Boudewijn Rempt wrote:
>> and demonstrate that that doesn't work. If a SSCCE exists, I'm more
>> likely to be able to help you.
>
> http://www.valdyas.org/~boud/vc-cmake-3.tgz is as minimal as I know how to
> make it: you still need qt, KDELibs4Support and extra-cmake-modules
> installed. After t
Boudewijn Rempt wrote:
> Yes, exactly. I've tried to find some documenation about this change, but
> apart from the rather unhelpful info in e.g.
> http://www.cmake.org/cmake/help/v3.1/manual/cmake-generator-expressions.7.html
> I couldn't find anything. I don't even understand why "cmake is movin
Boudewijn Rempt wrote:
> int n = name.indexOf(' ');
> -if (n != -1) {
> +if (n > -1) {
> kDebug(30518) << "Sheet name converting:" << name;
> -name[n] == '_';
> +name.replace(' ','_');
> kDebug(30518) << "Sheet name converted:" << name;
> }
> -name =