Skip to content

Commit 3afbcfb

Browse files
author
bas
committed
лишнее
1 parent 2a79c0c commit 3afbcfb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

main.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ int main(int argc, char *argv[]) {
1616
parser.addPositionalArgument("filename", QCoreApplication::translate("main", "file analyse."));
1717

1818
// 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);
2222

2323
// Process the actual command line arguments given by the user
2424
parser.process(app);
@@ -29,10 +29,10 @@ int main(int argc, char *argv[]) {
2929

3030
MainWindow w(fName);
3131

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+
// }
3636

3737
w.setWindowTitle("LinuxDependency");
3838

0 commit comments

Comments
 (0)