Skip to content

Commit

Permalink
Small change to avoid premature pessimization
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaure-kdab committed Mar 2, 2018
1 parent 95030c4 commit 630948a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kdwsdl2cpp/src/converter_clientstub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ void Converter::convertClientOutputMessage(const Operation &operation,
{
// result signal
const QString operationName = lowerlize(operation.name());
const QString signalBase = lowerlize(operation.name());
const QString signalBase = operationName;
const QString callName = QLatin1String("async") + upperlize(operation.name());
KODE::Function doneSignal(signalBase + QLatin1String("Done"), QLatin1String("void"), KODE::Function::Signal);
doneSignal.setDocs(QLatin1String("This signal is emitted whenever the asynchronous call ") + callName + QLatin1String("() has succeeded."));
Expand Down

0 comments on commit 630948a

Please sign in to comment.