src/relpipe-out-x11.cpp
branchv_0
changeset 3 2c4e533e9e33
parent 0 17fc678e0a94
child 10 e5a93cfec371
--- a/src/relpipe-out-x11.cpp	Sun Mar 28 19:09:44 2021 +0200
+++ b/src/relpipe-out-x11.cpp	Sun Mar 28 21:02:02 2021 +0200
@@ -36,14 +36,14 @@
 int main(int argc, char**argv) {
 	CLI cli(argc, argv);
 	CLI::untieStdIO();
-	
+
 	int resultCode = CLI::EXIT_CODE_UNEXPECTED_ERROR;
 
 	try {
 		CLIParser cliParser;
 		Configuration configuration = cliParser.parse(cli.arguments());
 		std::shared_ptr<RelationalReader> reader(Factory::create(std::cin));
-		X11Handler handler(std::cout, configuration);
+		X11Handler handler(configuration);
 		reader->addHandler(&handler);
 		reader->process();