summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3189bfe)
raw | patch | inline | side by side (parent: 3189bfe)
author | prokoudine <prokoudine@users.sourceforge.net> | |
Tue, 14 Nov 2006 23:17:49 +0000 (23:17 +0000) | ||
committer | prokoudine <prokoudine@users.sourceforge.net> | |
Tue, 14 Nov 2006 23:17:49 +0000 (23:17 +0000) |
src/main.cpp | patch | blob | history |
diff --git a/src/main.cpp b/src/main.cpp
index 6e184f4d713380a762335b55815b0d18b77506a1..60050c461adc326e74bc287392315da0b6492b89 100644 (file)
--- a/src/main.cpp
+++ b/src/main.cpp
SP_ARG_QUERY_HEIGHT,
SP_ARG_QUERY_ID,
SP_ARG_VERSION,
- SP_ARG_NEW_GUI,
SP_ARG_VACUUM_DEFS,
SP_ARG_LAST
};
N_("Show given files one-by-one, switch to next on any key/mouse event"),
NULL},
- {"new-gui", 'G',
- POPT_ARG_NONE, &sp_new_gui, SP_ARG_NEW_GUI,
- N_("Use the new Gtkmm GUI interface"),
- NULL},
-
{"vacuum-defs", 0,
POPT_ARG_NONE, &sp_vacuum_defs, SP_ARG_VACUUM_DEFS,
N_("Remove unused definitions from the defs section(s) of the document"),
} else if (!strcmp(argv[i], "-g") || !strcmp(argv[i], "--with-gui")) {
use_gui = TRUE;
break;
- } else if (!strcmp(argv[i], "-G") || !strcmp(argv[i], "--new-gui")) {
- sp_new_gui = TRUE;
- break;
}
}