1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
|
/***************************************************************************
* Copyright 2003-2009 Alexander Dymo <adymo@kdevelop.org> *
* Copyright 2007 Ralf Habacker <Ralf.Habacker@freenet.de> *
* Copyright 2006-2007 Matt Rogers <mattr@kde.org> *
* Copyright 2006-2007 Hamish Rodda <rodda@kde.org> *
* Copyright 2005-2007 Adam Treat <treat@kde.org> *
* Copyright 2003-2007 Jens Dagerbo <jens.dagerbo@swipnet.se> *
* Copyright 2001-2002 Bernd Gehrmann <bernd@mail.berlios.de> *
* Copyright 2001-2002 Matthias Hoelzer-Kluepfel <hoelzer@kde.org> *
* Copyright 2003 Roberto Raggi <roberto@kdevelop.org> *
* Copyright 2010 Niko Sams <niko.sams@gmail.com> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library General Public License as *
* published by the Free Software Foundation; either version 2 of the *
* License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include <config.h>
#include <kaboutdata.h>
#include <kapplication.h>
#include <kcmdlineargs.h>
#include <klocale.h>
#include <kxmlguiwindow.h>
#include <kstandarddirs.h>
#include <kdebug.h>
#include <ksplashscreen.h>
#include <ktexteditor/cursor.h>
#include <QFileInfo>
#include <QPixmap>
#include <QTimer>
#include <QDir>
#include <QSessionManager>
#include <QThread>
#include <QDBusConnection>
#include <QDBusInterface>
#include <QDBusReply>
#include <shell/core.h>
#include <shell/mainwindow.h>
#include <shell/projectcontroller.h>
#include <shell/documentcontroller.h>
#include <shell/plugincontroller.h>
#include <shell/sessioncontroller.h>
#include <shell/runcontroller.h>
#include <shell/launchconfiguration.h>
#include <shell/session.h>
#include <interfaces/ilauncher.h>
#include <interfaces/iproject.h>
#include "kdevideextension.h"
#include <KMessageBox>
#include <KProcess>
#include <iostream>
#include <QtCore/QTextStream>
using KDevelop::Core;
class KDevelopApplication: public KApplication {
public:
explicit KDevelopApplication(bool GUIenabled = true): KApplication(GUIenabled) {}
void saveState( QSessionManager& sm ) {
if (KDevelop::Core::self() && KDevelop::Core::self()->sessionController()) {
QString x11SessionId = QString("%1_%2").arg(sm.sessionId()).arg(sm.sessionKey());
QString kdevelopSessionId = KDevelop::Core::self()->sessionController()->activeSession()->id().toString();
sm.setRestartCommand(QStringList() << QCoreApplication::applicationFilePath() << "-session" << x11SessionId << "-s" << kdevelopSessionId);
}
KApplication::saveState(sm);
}
};
int main( int argc, char *argv[] )
{
static const char description[] = I18N_NOOP( "The KDevelop Integrated Development Environment" );
KAboutData aboutData( "kdevelop", 0, ki18n( "KDevelop" ), QByteArray(VERSION), ki18n(description), KAboutData::License_GPL,
ki18n( "Copyright 1999-2011, The KDevelop developers" ), KLocalizedString(), "http://www.kdevelop.org/" );
aboutData.addAuthor( ki18n("Andreas Pakulat"), ki18n( "Architecture, VCS Support, Project Management Support, QMake Projectmanager" ), "apaku@gmx.de" );
aboutData.addAuthor( ki18n("Alexander Dymo"), ki18n( "Architecture, Sublime UI, Ruby support" ), "adymo@kdevelop.org" );
aboutData.addAuthor( ki18n("David Nolden"), ki18n( "Definition-Use Chain, C++ Support, Code Navigation, Code Completion, Coding Assistance, Refactoring" ), "david.nolden.kdevelop@art-master.de" );
aboutData.addAuthor( ki18n("Aleix Pol Gonzalez"), ki18n( "Co-Maintainer, CMake Support, Run Support, Kross Support" ), "aleixpol@gmail.com" );
aboutData.addAuthor( ki18n("Vladimir Prus"), ki18n( "GDB integration" ), "ghost@cs.msu.su" );
aboutData.addAuthor( ki18n("Hamish Rodda"), ki18n( "Text editor integration, definition-use chain" ), "rodda@kde.org" );
aboutData.addAuthor( ki18n("Amilcar do Carmo Lucas"), ki18n( "Website admin, API documentation, Doxygen and autoproject patches" ), "amilcar@kdevelop.org" );
aboutData.addAuthor( ki18n("Niko Sams"), ki18n( "GDB integration, Webdevelopment Plugins" ), "niko.sams@gmail.com" );
aboutData.addAuthor( ki18n("Milian Wolff"), ki18n( "Co-Maintainer, Generic manager, Webdevelopment Plugins, Snippets, Performance" ), "mail@milianw.de" );
aboutData.addCredit( ki18n("Matt Rogers"), KLocalizedString(), "mattr@kde.org");
aboutData.addCredit( ki18n("Cédric Pasteur"), ki18n("astyle and indent support"), "cedric.pasteur@free.fr" );
aboutData.addCredit( ki18n("Evgeniy Ivanov"), ki18n("Distributed VCS, Git, Mercurial"), "powerfox@kde.ru" );
// QTest integration is separate in playground currently.
//aboutData.addCredit( ki18n("Manuel Breugelmanns"), ki18n( "Veritas, QTest integration"), "mbr.nxi@gmail.com" );
aboutData.addCredit( ki18n("Robert Gruber") , ki18n( "SnippetPart, debugger and usability patches" ), "rgruber@users.sourceforge.net" );
aboutData.addCredit( ki18n("Dukju Ahn"), ki18n( "Subversion plugin, Custom Make Manager, Overall improvements" ), "dukjuahn@gmail.com" );
aboutData.addCredit( ki18n("Harald Fernengel"), ki18n( "Ported to Qt 3, patches, valgrind, diff and perforce support" ), "harry@kdevelop.org" );
aboutData.addCredit( ki18n("Roberto Raggi"), ki18n( "C++ parser" ), "roberto@kdevelop.org" );
aboutData.addCredit( ki18n("The KWrite authors"), ki18n( "Kate editor component" ), "kwrite-devel@kde.org" );
aboutData.addCredit( ki18n("Nokia Corporation/Qt Software"), ki18n( "Designer code" ), "qt-info@nokia.com" );
aboutData.addCredit( ki18n("Contributors to older versions:"), KLocalizedString(), "" );
aboutData.addCredit( ki18n("The KHTML authors"), ki18n( "HTML documentation component" ), "kfm-devel@kde.org" );
aboutData.addCredit( ki18n("Bernd Gehrmann"), ki18n( "Initial idea, basic architecture, much initial source code" ), "bernd@kdevelop.org" );
aboutData.addCredit( ki18n("Caleb Tennis"), ki18n( "KTabBar, bugfixes" ), "caleb@aei-tech.com" );
aboutData.addCredit( ki18n("Richard Dale"), ki18n( "Java & Objective C support" ), "Richard_Dale@tipitina.demon.co.uk" );
aboutData.addCredit( ki18n("John Birch"), ki18n( "Debugger frontend" ), "jbb@kdevelop.org" );
aboutData.addCredit( ki18n("Sandy Meier"), ki18n( "PHP support, context menu stuff" ), "smeier@kdevelop.org" );
aboutData.addCredit( ki18n("Kurt Granroth"), ki18n( "KDE application templates" ), "kurth@granroth.org" );
aboutData.addCredit( ki18n("Ian Reinhart Geiser"), ki18n( "Dist part, bash support, application templates" ), "geiseri@yahoo.com" );
aboutData.addCredit( ki18n("Matthias Hoelzer-Kluepfel"), ki18n( "Several components, htdig indexing" ), "hoelzer@kde.org" );
aboutData.addCredit( ki18n("Victor Roeder"), ki18n( "Help with Automake manager and persistent class store" ), "victor_roeder@gmx.de" );
aboutData.addCredit( ki18n("Simon Hausmann"), ki18n( "Help with KParts infrastructure" ), "hausmann@kde.org" );
aboutData.addCredit( ki18n("Oliver Kellogg"), ki18n( "Ada support" ), "okellogg@users.sourceforge.net" );
aboutData.addCredit( ki18n("Jakob Simon-Gaarde"), ki18n( "QMake projectmanager" ), "jsgaarde@tdcspace.dk" );
aboutData.addCredit( ki18n("Falk Brettschneider"), ki18n( "MDI modes, QEditor, bugfixes" ), "falkbr@kdevelop.org" );
aboutData.addCredit( ki18n("Mario Scalas"), ki18n( "PartExplorer, redesign of CvsPart, patches, bugs(fixes)" ), "mario.scalas@libero.it" );
aboutData.addCredit( ki18n("Jens Dagerbo"), ki18n( "Replace, Bookmarks, FileList and CTags2 plugins. Overall improvements and patches" ), "jens.dagerbo@swipnet.se" );
aboutData.addCredit( ki18n("Julian Rockey"), ki18n( "Filecreate part and other bits and patches" ), "linux@jrockey.com" );
aboutData.addCredit( ki18n("Ajay Guleria"), ki18n( "ClearCase support" ), "ajay_guleria@yahoo.com" );
aboutData.addCredit( ki18n("Marek Janukowicz"), ki18n( "Ruby support" ), "child@t17.ds.pwr.wroc.pl" );
aboutData.addCredit( ki18n("Robert Moniot"), ki18n( "Fortran documentation" ), "moniot@fordham.edu" );
aboutData.addCredit( ki18n("Ka-Ping Yee"), ki18n( "Python documentation utility" ), "ping@lfw.org" );
aboutData.addCredit( ki18n("Dimitri van Heesch"), ki18n( "Doxygen wizard" ), "dimitri@stack.nl" );
aboutData.addCredit( ki18n("Hugo Varotto"), ki18n( "Fileselector component" ), "hugo@varotto-usa.com" );
aboutData.addCredit( ki18n("Matt Newell"), ki18n( "Fileselector component" ), "newellm@proaxis.com" );
aboutData.addCredit( ki18n("Daniel Engelschalt"), ki18n( "C++ code completion, persistent class store" ), "daniel.engelschalt@gmx.net" );
aboutData.addCredit( ki18n("Stephane Ancelot"), ki18n( "Patches" ), "sancelot@free.fr" );
aboutData.addCredit( ki18n("Jens Zurheide"), ki18n( "Patches" ), "jens.zurheide@gmx.de" );
aboutData.addCredit( ki18n("Luc Willems"), ki18n( "Help with Perl support" ), "Willems.luc@pandora.be" );
aboutData.addCredit( ki18n("Marcel Turino"), ki18n( "Documentation index view" ), "M.Turino@gmx.de" );
aboutData.addCredit( ki18n("Yann Hodique"), ki18n( "Patches" ), "Yann.Hodique@lifl.fr" );
aboutData.addCredit( ki18n("Tobias Gl\303\244\303\237er") , ki18n( "Documentation Finder, qmake projectmanager patches, usability improvements, bugfixes ... " ), "tobi.web@gmx.de" );
aboutData.addCredit( ki18n("Andreas Koepfle") , ki18n( "QMake project manager patches" ), "koepfle@ti.uni-mannheim.de" );
aboutData.addCredit( ki18n("Sascha Cunz") , ki18n( "Cleanup and bugfixes for qEditor, AutoMake and much other stuff" ), "mail@sacu.de" );
aboutData.addCredit( ki18n("Zoran Karavla"), ki18n( "Artwork for the ruby language" ), "webmaster@the-error.net", "http://the-error.net" );
//we can't use KCmdLineArgs as it doesn't allow arguments for the debugee
//so lookup the --debug switch and eat everything behind by decrementing argc
//debugArgs is filled with args after --debug <debuger>
QStringList debugArgs;
{
bool debugFound = false;
int c = argc;
for (int i=0; i < c; ++i) {
if (debugFound) {
debugArgs << argv[i];
} else if (qstrcmp(argv[i], "--debug") == 0 || qstrcmp(argv[i], "-d") == 0) {
if (argc <= i+1) {
argc = i + 1;
} else {
i++;
argc = i + 1;
}
debugFound = true;
} else if (QString(argv[i]).startsWith("--debug=")) {
argc = i + 1;
debugFound = true;
}
}
}
KCmdLineArgs::init( argc, argv, &aboutData );
KCmdLineOptions options;
options.add("n")
.add("new-session <name>", ki18n("Open KDevelop with a new session using the given name."));
options.add("s")
.add("open-session <session>", ki18n("Open KDevelop with the given session.\n"
"You can pass either hash or the name of the session." ));
options.add("ps").add("pick-session", ki18n("Shows all available sessions and lets you select one to open." ));
options.add("l")
.add("list-sessions", ki18n( "List available sessions and quit." ));
options.add("p")
.add("project <project>", ki18n( "Open KDevelop and load the given project." ));
options.add("d")
.add("debug <debugger>",
ki18n( "Start debugging an application in KDevelop with the given debugger.\n"
"The binary that should be debugged must follow - including arguments.\n"
"Example: kdevelop --debug gdb myapp --foo bar"));
options.add("pid");
options.add("+files", ki18n( "Files to load" ));
options.add(":", ki18n("Deprecated options:"));
options.add("sessions", ki18n( "Same as -l / --list-sessions" ));
options.add("cs <name>", ki18n( "Same as -n / --new-session" ));
KCmdLineArgs::addCmdLineOptions( options );
KCmdLineArgs* args = KCmdLineArgs::parsedArgs();
KDevelopApplication app;
// The session-controller needs to arguments to eventually pass them to newly opened sessions
KDevelop::SessionController::setArguments(argc, argv);
if(args->isSet("sessions") || args->isSet("list-sessions"))
{
QTextStream qout(stdout);
qout << endl << ki18n("Available sessions (use '-s HASH' or '-s NAME' to open a specific one):").toString() << endl << endl;
qout << QString("%1").arg(ki18n("Hash").toString(), -38) << '\t' << ki18n("Name: Opened Projects").toString() << endl;
foreach(const KDevelop::SessionInfo& si, KDevelop::SessionController::availableSessionInfo())
{
if ( si.name.isEmpty() && si.projects.isEmpty() ) {
continue;
}
qout << si.uuid.toString() << '\t' << si.description;
if(!KDevelop::SessionController::tryLockSession(si.uuid.toString()))
qout << " " << i18n("[running]");
qout << endl;
}
return 0;
}
// if empty, restart kdevelop with last active session, see SessionController::defaultSessionId
QString session;
if(args->isSet("ps"))
{
bool onlyRunning = args->isSet("pid");
session = KDevelop::SessionController::showSessionChooserDialog(QString(), onlyRunning);
if(session.isEmpty())
return 1;
}
if ( args->isSet("debug") ) {
if ( debugArgs.isEmpty() ) {
QTextStream qerr(stderr);
qerr << endl << i18n("Specify the binary you want to debug.") << endl;
return 1;
}
QString binary = debugArgs.first();
if ( binary.contains('/') ) {
binary = binary.right(binary.lastIndexOf('/'));
}
session = i18n("Debug")+" "+binary;
} else if ( args->isSet("cs") || args->isSet("new-session") )
{
session = args->isSet("cs") ? args->getOption("cs") : args->getOption("new-session");
foreach(const KDevelop::SessionInfo& si, KDevelop::SessionController::availableSessionInfo())
{
if ( session == si.name ) {
QTextStream qerr(stderr);
qerr << endl << i18n("A session with the name %1 exists already. Use the -s switch to open it.", session) << endl;
return 1;
}
}
// session doesn't exist, we can create it
} else if ( args->isSet("open-session") ) {
session = args->getOption("open-session");
bool found = false;
foreach(const KDevelop::SessionInfo& si, KDevelop::SessionController::availableSessionInfo())
{
if ( session == si.name || session == si.uuid.toString() ) {
found = true;
break;
}
}
if ( !found ) {
QTextStream qerr(stderr);
qerr << endl << i18n("Cannot open unknown session %1. See --sessions switch for available sessions or use -cs to create a new one.", session) << endl;
return 1;
}
}
QString sessionId = session;
foreach(const KDevelop::SessionInfo& si, KDevelop::SessionController::availableSessionInfo()) {
if ( si.name == session ) {
sessionId = si.uuid.toString();
break;
}
}
forever {
KDevelop::SessionController::LockSessionState state = KDevelop::SessionController::tryLockSession(sessionId);
if(args->isSet("pid"))
{
if(state.success)
{
kError() << session << sessionId << "is not running";
return 5;
}
if(args->isSet("pid"))
{
// Print the PID and we're ready
std::cout << state.holderPid << std::endl;
return 0;
}
}
if(!state) {
QDBusInterface interface(QString("org.kdevelop.kdevelop-%1").arg(state.holderPid),
"/kdevelop/MainWindow", "org.kdevelop.MainWindow",
QDBusConnection::sessionBus());
if (interface.isValid()) {
QDBusReply<void> reply = interface.call("ensureVisible");
if (reply.isValid()) {
qDebug() << i18n("made running kdevelop instance (PID: %1) visible", state.holderPid);
return 0;
}
}
QString errmsg = i18n("<p>Failed to lock the session <em>%1</em>, "
"already locked by %2 (PID %4) on %3.<br>"
"The given application did not respond to a DBUS call, "
"it may have crashed or is hanging.</p>"
"<p>Do you want to remove the lock file and force a new KDevelop instance?<br/>"
"<strong>Beware:</strong> Only do this if you are sure there is no running"
" KDevelop process using this session.</p>",
session, state.holderApp, state.holderHostname, state.holderPid );
KGuiItem overwrite = KStandardGuiItem::cont();
overwrite.setText(i18n("remove lock file"));
KGuiItem cancel = KStandardGuiItem::quit();
int ret = KMessageBox::warningYesNo(0, errmsg, i18n("Failed to Lock Session %1", session),
overwrite, cancel, QString() );
if (ret == KMessageBox::Yes) {
if (!QFile::remove(state.lockFile)) {
KMessageBox::error(0, i18n("Failed to remove lock file %1.", state.lockFile));
return 1;
}
} else {
return 1;
}
} else {
break;
}
}
KDevIDEExtension::init();
KSplashScreen* splash = 0;
QString splashFile = KStandardDirs::locate( "appdata", "pics/kdevelop-splash.png" );
if( !splashFile.isEmpty() )
{
QPixmap pm;
pm.load( splashFile );
splash = new KSplashScreen( pm );
splash->show();
}
if(!Core::initialize(splash, Core::Default, session))
return 5;
KGlobal::locale()->insertCatalog( Core::self()->componentData().catalogName() );
Core* core = Core::self();
QStringList projectNames = args->getOptionList("project");
if(!projectNames.isEmpty())
{
foreach(const QString& p, projectNames)
{
QFileInfo info( p );
if( info.suffix() == "kdev4" ) {
// make sure the project is not already opened by the session controller
bool shouldOpen = true;
KUrl url(info.absoluteFilePath());
foreach(KDevelop::IProject* p, core->projectController()->projects()) {
if (p->projectFileUrl() == url) {
shouldOpen = false;
break;
}
}
if (shouldOpen) {
core->projectController()->openProject( url );
}
}
}
}
if ( args->isSet("debug") ) {
if ( debugArgs.isEmpty() ) {
QTextStream qerr(stderr);
qerr << endl << i18n("Specify the binary you want to debug.") << endl;
return 1;
}
QString binary = debugArgs.first();
if ( binary.contains('/') ) {
binary = binary.right(binary.lastIndexOf('/'));
}
QString launchName = i18n("Debug")+' '+binary;
KDevelop::LaunchConfiguration* launch = 0;
kDebug() << launchName;
foreach (KDevelop::LaunchConfiguration *l, core->runControllerInternal()->launchConfigurationsInternal()) {
kDebug() << l->name();
if (l->name() == launchName) {
launch = l;
}
}
KDevelop::LaunchConfigurationType *type = 0;
foreach (KDevelop::LaunchConfigurationType *t, core->runController()->launchConfigurationTypes()) {
kDebug() << t->id();
if (t->id() == "Native Application") {
type = t;
break;
}
}
if (!type) {
QTextStream qerr(stderr);
qerr << endl << i18n("Cannot find native launch configuration type") << endl;
return 1;
}
if (launch && launch->type()->id() != "Native Application") launch = 0;
if (launch && launch->launcherForMode("debug") != args->getOption("debug")) launch = 0;
if (!launch) {
kDebug() << launchName << "not found, creating a new one";
QPair<QString,QString> launcher;
launcher.first = "debug";
foreach (KDevelop::ILauncher *l, type->launchers()) {
if (l->id() == args->getOption("debug")) {
if (l->supportedModes().contains("debug")) {
launcher.second = l->id();
}
}
}
if (launcher.second.isEmpty()) {
QTextStream qerr(stderr);
qerr << endl << i18n("Cannot find launcher %1").arg(args->getOption("debug")) << endl;
return 1;
}
KDevelop::ILaunchConfiguration* ilaunch = core->runController()->createLaunchConfiguration(type, launcher, 0, launchName);
launch = dynamic_cast<KDevelop::LaunchConfiguration*>(ilaunch);
}
type->configureLaunchFromCmdLineArguments(launch->config(), debugArgs);
launch->config().writeEntry("Break on Start", true);
core->runControllerInternal()->setDefaultLaunch(launch);
core->runControllerInternal()->execute("debug", launch);
} else {
int count=args->count();
for(int i=0; i<count; ++i)
{
QString file=args->arg(i);
//Allow opening specific lines in documents, like mydoc.cpp:10
int lineNumberOffset = file.lastIndexOf(':');
KTextEditor::Cursor line;
if( lineNumberOffset != -1 )
{
bool isInt;
int lineNr = file.mid(lineNumberOffset+1).toInt(&isInt);
if (isInt)
{
file = file.left(lineNumberOffset);
line = KTextEditor::Cursor(lineNr, 0);
}
}
if( QFileInfo(file).isRelative() ) {
file = QDir::currentPath() + QDir::separator() + file;
}
KUrl f( "file://"+file );
if(!core->documentController()->openDocument(f, line))
kWarning() << i18n("Could not open %1") << args->arg(i);
}
args->clear();
}
return app.exec();
}
|