┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-08-13Port from KonqMimeData to KIO::isClipboardDataCut/setClipboardDataCutDavid Faure
2014-08-13SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-12Merge branch 'KDE/4.14'Frank Reininghaus
2014-08-12Always clear DolphinView's m_currentItemUrl member in updateViewState()Frank Reininghaus
Before this patch, we still kept the URL in m_currentItemUrl if the URL was not found in the model. This could cause problems the next time updateViewState() was called, because the current index would then be set to 0, which could cause other issues. For example, all items between the first item in the view and a folder which was expanded in Details View could be selected. In principle, it is possible that updateViewState() is called multiple times if many large files are being pasted in the view, but since the item which should be made the current item (and which the view should be scrolled to) should always be the first pasted item, this change will most likely not cause any other problems. BUG: 329377 REVIEW: 119703 FIXED-IN: 4.14.0
2014-08-12Fix crash when restoring a session stored with Dolphin 4.13 or earlierFrank Reininghaus
Since DolphinTabPage::saveState() and DolphinTabPage::restoreState(const QByteArray& state) save and restore the state of each tab in a different format than DolphinMainWindow did before the refactoring, we can run into problems: the first time a user logs into a session that has Dolphin 4.14, Dolphin might read session data that does not contain the QByteArray that DolphinTabPage wants to read the data from. In restoreState, isSplitViewEnabled will thus have the value false, and no secondary view will be created. Later on, m_primaryViewActive will also be set to false, but the else branch of the following "if (m_primaryViewActive)" then tries to activate the secondary view, which does not exist -> we get a crash. The easiest solution is to not restore the tab state if no session data in the new format is found. BUG: 338187 REVIEW: 119718 FIXED-IN: 4.14.0
2014-08-10Port accessibility to Qt 5Frederik Gladhorn
REVIEW: 119428
2014-08-10Implemented DolphinTabWidget class to encapsulate the tab handling from ↵Emmanuel Pescosta
DolphinMainWindow. REVIEW: 119115
2014-08-10SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-10SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-04Fix wrong text eliding in some corner cases.Emmanuel Pescosta
BUG: 337104 FIXED-IN: 4.14.0 REVIEW: 119546
2014-08-03Merge branch 'master' into frameworksLuca Beltrame
Conflicts: dolphin/src/panels/places/placesitemmodel.cpp kdepasswd/kcm/CMakeLists.txt [deleted in frameworks] kdepasswd/kcm/main.cpp [deleted in frameworks]
2014-08-03Merge branch 'KDE/4.14'Frank Reininghaus
2014-08-03Fix warning on launch "QPixmap::scaled: Pixmap is a null pixmap"Michael Reeves
If Dolphin is launched with the information panel on and set to display previews, PixmapViewer::paintEvent is called three times before any pixmap is set. Each time the above warning message is output. REVIEW: 119553 FIXED-IN: 4.14.0
2014-08-03SVN_SILENT made messages (.desktop file)l10n daemon script
2014-08-03SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-03SVN_SILENT made messages (.desktop file)l10n daemon script
2014-08-03SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-02SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-02SVN_SILENT made messages (after extraction)l10n daemon script
2014-08-01Actually the include was unused, remove itLuca Beltrame
2014-08-01Attempt to fix build (try 2)Luca Beltrame
2014-08-01SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-31Clean up KAction leftovers.Arnold Dumas
2014-07-31SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-31SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-31s/kcmshell4/kcmshell5Lukáš Tinkl
2014-07-30Prevent multiple connections between sender and receiverArjun AK
Use a Qt::uniqueConnection so that only one connection exists between the sender and receiver. REVIEW: 119532
2014-07-27SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-25SVN_SILENT made messages (.desktop file)l10n daemon script
2014-07-25SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-24SVN_SILENT made messages (.desktop file)l10n daemon script
2014-07-24SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-22Fix buildLuca Beltrame
2014-07-22Merge branch 'master' into frameworksLuca Beltrame
2014-07-22make CTRL+SHIFT+T reopen last closed tabArjun AK
BUG: 336818 FEATURE: 118994
2014-07-21Merge branch 'master' into frameworksLuca Beltrame
2014-07-21SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-19SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-18install rc file to KXMLGUI_INSTALL_DIRMontel Laurent
2014-07-16Use xi18n when text has markupMontel Laurent
2014-07-16SVN_SILENT made messages (.desktop file)l10n daemon script
2014-07-16Merge branch 'master' into frameworksLuca Beltrame
Conflicts: kdepasswd/kcm/kcm_useraccount.desktop [deleted in frameworks branch] plasma/applets/folderview/plasma-applet-folderview.desktop [deleted in frameworks branch]
2014-07-16Merge branch 'KDE/4.14'Frank Reininghaus
2014-07-16Fix regression concerning the "Places" selector in the location barFrank Reininghaus
This commit ensures that the selector is visible in all location bars if and only if the Places Panel is hidden. It fixes a regression caused by commit 6a98d83312ff2b14ab878e1427bbace3b683eacc. BUG: 337389 FIXED-IN: 4.14.0 REVIEW: 119238
2014-07-16SVN_SILENT made messages (.desktop file)l10n daemon script
2014-07-16SVN_SILENT made messages (after extraction)l10n daemon script
2014-07-10Merge branch 'master' into frameworksEmmanuel Pescosta
Conflicts: dolphin/src/dolphinmainwindow.cpp dolphin/src/dolphinviewcontainer.cpp
2014-07-08Implemented (QTabBar based) DolphinTabBar class to encapsulate the tab bar ↵Emmanuel Pescosta
handling from DolphinMainWindow. REVIEW: 118969
2014-07-08Avoid opening unused tabs which are closed again after startup has finished ↵Emmanuel Pescosta
(when directory/file urls are given) Instead of always opening a new tab with the home url and closing it again when directory/file urls are passed on, we now use the given directories/files directly to open new tabs on startup. Makes the code easier and we can reuse openDirectories/openFiles in future (if needed). REVIEW: 118966
2014-07-06SVN_SILENT made messages (after extraction)l10n daemon script