diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-17 15:54:24 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-17 15:54:24 -0500 |
commit | 0e11c4ce6d21acd0139345c19b6341971e679b23 (patch) | |
tree | 361adc3f2312984ba2fbf2e3189e41a55d292648 /clients/tde/src/app/main.cpp | |
parent | 2c6c71334b9a5a9ee9211e4b389a239273642313 (diff) | |
download | ulab-0e11c4ce6d21acd0139345c19b6341971e679b23.tar.gz ulab-0e11c4ce6d21acd0139345c19b6341971e679b23.zip |
Write initial SASL/GSSAPI Kerberos classes and server code
Diffstat (limited to 'clients/tde/src/app/main.cpp')
-rw-r--r-- | clients/tde/src/app/main.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/clients/tde/src/app/main.cpp b/clients/tde/src/app/main.cpp index 491056e..09b81e0 100644 --- a/clients/tde/src/app/main.cpp +++ b/clients/tde/src/app/main.cpp @@ -23,15 +23,15 @@ static KAboutData about( "http://remotefpga.pearsoncomputing.net/", "kb9vqf@pearsoncomputing.net" ); -int main( int argc, char *argv[] ) +int main(int argc, char *argv[]) { - about.addAuthor( "Timothy Pearson", I18N_NOOP("Author, maintainer"), "kb9vqf@pearsoncomputing.net", "http://remotefpga.pearsoncomputing.net/" ); - - KCmdLineArgs::init( argc, argv, &about ); - KCmdLineArgs::addCmdLineOptions( options ); - + about.addAuthor("Timothy Pearson", I18N_NOOP("Author, maintainer"), "kb9vqf@pearsoncomputing.net", "http://remotefpga.pearsoncomputing.net/"); + + KCmdLineArgs::init(argc, argv, &about); + KCmdLineArgs::addCmdLineOptions(options); + KApplication app; - + // Read MDI settings (window positions, etc) KConfig *c = app.config(); // RAJA FIXME @@ -41,7 +41,9 @@ int main( int argc, char *argv[] ) app.setMainWidget(mainWin); KCmdLineArgs* const args = KCmdLineArgs::parsedArgs(); - if (args->count() > 0) mainWin->setServerHost(args->arg(0)); + if (args->count() > 0) { + mainWin->setServerHost(args->arg(0)); + } args->clear(); mainWin->show(); |