Version: 0.2 (using KDE 3.1.1) Installed from: SuSE Compiler: gcc version 3.3 20030226 (prerelease) (SuSE Linux) OS: Linux (i686) release 2.4.20-4GB Since Kdvi seems to be a native KDE application, I would assume that when I leave a kdvi window open when closing a session (storing it of course) and then restart the session, that then it reappears (like konqueror does, for example). But it doesn't.
CVS commit by whuss: Enable session management. Fixes bug #60142. BUG:60142 M +66 -57 main.cpp 1.10 --- kdegraphics/kdvi/main.cpp #1.9:1.10 @@ -56,4 +56,12 @@ int main(int argc, char** argv) KCmdLineArgs::addCmdLineOptions(options); KApplication app; + + // see if we are starting with session management + if (app.isRestored()) + { + RESTORE(KViewShell); + } + else + { KCmdLineArgs* args = KCmdLineArgs::parsedArgs(); @@ -135,4 +142,6 @@ int main(int argc, char** argv) shell->show(); + } + return app.exec(); }
This bug has been fixed for KDE 3.4 which should be released in March 2005. Thanks for your help, Wilfried Huss.