File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ int main(int argc, char *argv[]) {
16
16
parser.addPositionalArgument (" filename" , QCoreApplication::translate (" main" , " file analyse." ));
17
17
18
18
// A boolean option with multiple names (-f, --force)
19
- QCommandLineOption archOption (QStringList () << " a" << " arch" ,
20
- QCoreApplication::translate (" main" , " Show architecture." ));
21
- parser.addOption (archOption);
19
+ // QCommandLineOption archOption(QStringList() << "a" << "arch",
20
+ // QCoreApplication::translate("main", "Show architecture."));
21
+ // parser.addOption(archOption);
22
22
23
23
// Process the actual command line arguments given by the user
24
24
parser.process (app);
@@ -29,10 +29,10 @@ int main(int argc, char *argv[]) {
29
29
30
30
MainWindow w (fName );
31
31
32
- if (parser.isSet (archOption)) {
33
- QLdd qldd (fName , app.applicationDirPath ());
34
- size_t fsz = qldd.getFileSize ();
35
- }
32
+ // if (parser.isSet(archOption)) {
33
+ // QLdd qldd(fName, app.applicationDirPath());
34
+ // size_t fsz = qldd.getFileSize();
35
+ // }
36
36
37
37
w.setWindowTitle (" LinuxDependency" );
38
38
You can’t perform that action at this time.
0 commit comments