https://bugs.kde.org/show_bug.cgi?id=410962

--- Comment #2 from Turtle <tur...@think-electric.com> ---
I did some poking around and this is defiantly something to do with the newer
QT port.
In main.cpp just after
initialiseCmdLineArgs(cmdLineParser);
    // ignorable command options
There are some calls like:
    cmdLineParser->addOption(QCommandLineOption(QStringList() <<
QLatin1String("m") << QLatin1String("merge"), i18n("Merge the input.")));

Then some calls to add the files:
    cmdLineParser->addPositionalArgument(QLatin1String("[File1]"), i18n("file1
to open (base, if not specified via --base)"));
    cmdLineParser->addPositionalArgument(QLatin1String("[File2]"), i18n("file2
to open"));
    cmdLineParser->addPositionalArgument(QLatin1String("[File3]"), i18n("file3
to open"));

However the options seem to be clobbering the files, so my guess is another
cmdLineParser needs to loop for every option that == 'L'

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to