Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tde-systemsettings/commit/8bb920b7600fff2edead978c5d7f39d915a54176 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent c9354cef0e
commit 8bb920b760

@ -43,12 +43,12 @@ int main( int argc, char *argv[] )
KAboutData::License_LGPL, "(c) 2005, Benjamin C. Meyer", 0, 0);
aboutData.addAuthor("Benjamin C. Meyer", I18N_NOOP("Author & Maintainer"),
"ben+systempreferences@meyerhome.net");
KCmdLineArgs::init(argc, argv, &aboutData);
TDECmdLineArgs::init(argc, argv, &aboutData);
// Tell which options are supported
KCmdLineArgs::addCmdLineOptions( options );
TDECmdLineArgs::addCmdLineOptions( options );
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
// Launch
KApplication application(argc, argv);

Loading…
Cancel
Save