Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KDE Pim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Unmaintained
KDE Pim
Commits
90bcdc1c
Commit
90bcdc1c
authored
Nov 27, 2014
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
KUrl--
parent
5a17e32c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
blogilo/src/mainwindow.cpp
blogilo/src/mainwindow.cpp
+2
-2
kmail/kmmainwidget.cpp
kmail/kmmainwidget.cpp
+1
-1
korganizer/korganizer_part.cpp
korganizer/korganizer_part.cpp
+3
-3
No files found.
blogilo/src/mainwindow.cpp
View file @
90bcdc1c
...
...
@@ -66,7 +66,7 @@
#include <kimagefilepreview.h>
#include <KToolInvocation>
#include <QMenu>
#include <
K
Url>
#include <
Q
Url>
#include <QDockWidget>
#include <QProgressBar>
...
...
@@ -703,7 +703,7 @@ void MainWindow::uploadMediaObject()
void
MainWindow
::
slotOpenCurrentBlogInBrowser
()
{
if
(
mCurrentBlogId
>
-
1
)
{
K
Url
url
(
DBMan
::
self
()
->
blog
(
mCurrentBlogId
)
->
blogUrl
());
Q
Url
url
(
DBMan
::
self
()
->
blog
(
mCurrentBlogId
)
->
blogUrl
());
if
(
url
.
isValid
())
{
KToolInvocation
::
invokeBrowser
(
url
.
url
());
}
else
{
...
...
kmail/kmmainwidget.cpp
View file @
90bcdc1c
...
...
@@ -2385,7 +2385,7 @@ void KMMainWidget::slotSaveMsg()
//-----------------------------------------------------------------------------
void
KMMainWidget
::
slotOpenMsg
()
{
KMOpenMsgCommand
*
openCommand
=
new
KMOpenMsgCommand
(
this
,
K
Url
(),
overrideEncoding
(),
this
);
KMOpenMsgCommand
*
openCommand
=
new
KMOpenMsgCommand
(
this
,
Q
Url
(),
overrideEncoding
(),
this
);
openCommand
->
start
();
}
...
...
korganizer/korganizer_part.cpp
View file @
90bcdc1c
...
...
@@ -147,9 +147,9 @@ bool KOrganizerPart::saveURL()
return
mActionManager
->
saveURL
();
}
bool
KOrganizerPart
::
saveAsURL
(
const
QUrl
&
k
url
)
bool
KOrganizerPart
::
saveAsURL
(
const
QUrl
&
url
)
{
return
mActionManager
->
saveAsURL
(
k
url
);
return
mActionManager
->
saveAsURL
(
url
);
}
QUrl
KOrganizerPart
::
getCurrentURL
()
const
...
...
@@ -175,7 +175,7 @@ void KOrganizerPart::setTitle()
if ( !hasDocument() ) {
title = i18n("Calendar");
} else {
K
Url url = mActionManager->url();
Q
Url url = mActionManager->url();
if ( !url.isEmpty() ) {
if ( url.isLocalFile() ) title = url.fileName();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment