Skip to content

Commit

Permalink
Remove unused cli option
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickziegler committed Jun 2, 2024
1 parent a298299 commit fd8ac66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)

list(PREPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

project(MediaCopier VERSION 2.1.3)
project(MediaCopier VERSION 2.1.4)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
4 changes: 1 addition & 3 deletions mediacopier-qt/source/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,8 @@ Config::Config(const QApplication& app)
"DST", "Output directory", "[DST]]]");
QCommandLineOption optSlimGui(
"slim-gui", "Pattern to be used for creating new filenames");
QCommandLineOption optNoGui(
"no-gui", "Pattern to be used for creating new filenames");

parser.addOptions({optSlimGui, optNoGui});
parser.addOptions({optSlimGui});
parser.addVersionOption();
parser.addHelpOption();
parser.process(app);
Expand Down

0 comments on commit fd8ac66

Please sign in to comment.