From kde-commits Thu May 31 21:36:18 2012 From: Harald Sitter Date: Thu, 31 May 2012 21:36:18 +0000 To: kde-commits Subject: [dragon] src/app: call playdiscs rather than playdvd, otherwise disc selection is not done Message-Id: <20120531213618.A65E8A60A9 () git ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=133850036210998 Git commit 07421228426850eca8ac274b239affd423663693 by Harald Sitter. Committed on 31/05/2012 at 23:35. Pushed by sitter into branch 'master'. call playdiscs rather than playdvd, otherwise disc selection is not done BUG: 192603 FIXED-IN: 4.9.0 M +1 -1 src/app/mainWindow.cpp http://commits.kde.org/dragon/07421228426850eca8ac274b239affd423663693 diff --git a/src/app/mainWindow.cpp b/src/app/mainWindow.cpp index 9db6f87..3197986 100644 --- a/src/app/mainWindow.cpp +++ b/src/app/mainWindow.cpp @@ -240,7 +240,7 @@ MainWindow::init() if( !kapp->isSessionRestored() ) { KCmdLineArgs &args =3D *KCmdLineArgs::parsedArgs(); if (args.isSet( "play-dvd" )) - engine()->playDvd(); + playDisc(); else if (args.count() > 0 ) { this->open( args.url( 0 ) ); args.clear();