Skip to content
Snippets Groups Projects
Commit b63b4bc4 authored by Peter Penz's avatar Peter Penz
Browse files

Fix translation issue in context-menu

Thanks to Alexander Potashev for the patch!

BUG: 290620
FIXED-IN: 4.8.2
parent b4f70849
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,8 @@
DolphinApplication::DolphinApplication() :
m_mainWindow(0)
{
KGlobal::locale()->insertCatalog("libkonq"); // Needed for applications using libkonq
m_mainWindow = new DolphinMainWindow();
m_mainWindow->setAttribute(Qt::WA_DeleteOnClose);
m_mainWindow->show();
......
......@@ -83,8 +83,6 @@ KDE_EXPORT int kdemain(int argc, char **argv)
KCmdLineArgs::addCmdLineOptions(options);
DolphinApplication app;
KGlobal::locale()->insertCatalog("libkonq"); // needed for applications using libkonq
if (app.isSessionRestored()) {
app.restoreSession();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment