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
A
Akonadi Contacts
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
PIM
Akonadi Contacts
Commits
8fb5f4f4
Commit
8fb5f4f4
authored
Sep 01, 2016
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add parent directly
parent
5d2ed64c
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
19 deletions
+13
-19
src/contactgroupeditordialog.cpp
src/contactgroupeditordialog.cpp
+3
-3
src/contactgroupviewerdialog.cpp
src/contactgroupviewerdialog.cpp
+3
-3
src/contactviewerdialog.cpp
src/contactviewerdialog.cpp
+1
-2
src/editor/addresseditor/addresslocationwidget.cpp
src/editor/addresseditor/addresslocationwidget.cpp
+1
-2
src/editor/generalinfoeditor/mail/maillistwidget.cpp
src/editor/generalinfoeditor/mail/maillistwidget.cpp
+1
-2
src/editor/generalinfoeditor/messaging/messaginglistwidget.cpp
...ditor/generalinfoeditor/messaging/messaginglistwidget.cpp
+1
-2
src/editor/generalinfoeditor/nameeditdialog.cpp
src/editor/generalinfoeditor/nameeditdialog.cpp
+1
-1
src/editor/generalinfoeditor/phone/phonelistwidget.cpp
src/editor/generalinfoeditor/phone/phonelistwidget.cpp
+1
-2
src/editor/generalinfoeditor/web/weblistwidget.cpp
src/editor/generalinfoeditor/web/weblistwidget.cpp
+1
-2
No files found.
src/contactgroupeditordialog.cpp
View file @
8fb5f4f4
...
...
@@ -87,9 +87,9 @@ ContactGroupEditorDialog::ContactGroupEditorDialog(Mode mode, QWidget *parent)
,
d
(
new
Private
(
this
,
mode
))
{
setWindowTitle
(
mode
==
CreateMode
?
i18n
(
"New Contact Group"
)
:
i18n
(
"Edit Contact Group"
));
Q
DialogButtonBox
*
buttonBox
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
|
QDialogButtonBox
::
Cancel
);
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
;
setLayout
(
mainLayout
);
Q
VBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
this
);
QDialogButtonBox
*
buttonBox
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
|
QDialogButtonBox
::
Cancel
,
this
);
d
->
okButton
=
buttonBox
->
button
(
QDialogButtonBox
::
Ok
);
d
->
okButton
->
setDefault
(
true
);
d
->
okButton
->
setShortcut
(
Qt
::
CTRL
|
Qt
::
Key_Return
);
...
...
src/contactgroupviewerdialog.cpp
View file @
8fb5f4f4
...
...
@@ -43,9 +43,9 @@ ContactGroupViewerDialog::ContactGroupViewerDialog(QWidget *parent)
,
d
(
new
Private
)
{
setWindowTitle
(
i18n
(
"Show Contact Group"
));
Q
DialogButtonBox
*
buttonBox
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
);
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
;
setLayout
(
mainLayout
);
Q
VBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
this
);
QDialogButtonBox
*
buttonBox
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
,
this
);
QPushButton
*
okButton
=
buttonBox
->
button
(
QDialogButtonBox
::
Ok
);
okButton
->
setDefault
(
true
);
okButton
->
setShortcut
(
Qt
::
CTRL
|
Qt
::
Key_Return
);
...
...
src/contactviewerdialog.cpp
View file @
8fb5f4f4
...
...
@@ -70,11 +70,10 @@ ContactViewerDialog::ContactViewerDialog(QWidget *parent)
,
d
(
new
Private
(
this
))
{
setWindowTitle
(
i18n
(
"Show Contact"
));
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
this
);
QDialogButtonBox
*
buttonBox
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
);
QWidget
*
mainWidget
=
new
QWidget
(
this
);
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
;
setLayout
(
mainLayout
);
mainLayout
->
addWidget
(
mainWidget
);
QPushButton
*
okButton
=
buttonBox
->
button
(
QDialogButtonBox
::
Ok
);
okButton
->
setDefault
(
true
);
...
...
src/editor/addresseditor/addresslocationwidget.cpp
View file @
8fb5f4f4
...
...
@@ -45,8 +45,7 @@ AddressLocationWidget::AddressLocationWidget(QWidget *parent)
mCurrentAddress
(
-
1
),
mCurrentMode
(
CreateAddress
)
{
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
;
setLayout
(
topLayout
);
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
(
this
);
QGridLayout
*
gridLayout
=
new
QGridLayout
;
topLayout
->
addLayout
(
gridLayout
);
...
...
src/editor/generalinfoeditor/mail/maillistwidget.cpp
View file @
8fb5f4f4
...
...
@@ -31,10 +31,9 @@ using namespace Akonadi;
MailListWidget
::
MailListWidget
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
;
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
(
this
)
;
topLayout
->
setMargin
(
0
);
topLayout
->
setSpacing
(
0
);
setLayout
(
topLayout
);
QLabel
*
label
=
new
QLabel
(
i18n
(
"Email"
),
this
);
label
->
setObjectName
(
QStringLiteral
(
"emaillistlabel"
));
...
...
src/editor/generalinfoeditor/messaging/messaginglistwidget.cpp
View file @
8fb5f4f4
...
...
@@ -31,10 +31,9 @@ using namespace Akonadi;
MessagingListWidget
::
MessagingListWidget
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
;
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
(
this
)
;
topLayout
->
setMargin
(
0
);
topLayout
->
setSpacing
(
0
);
setLayout
(
topLayout
);
QLabel
*
label
=
new
QLabel
(
i18n
(
"Messaging"
),
this
);
label
->
setObjectName
(
QStringLiteral
(
"messaginglistlabel"
));
...
...
src/editor/generalinfoeditor/nameeditdialog.cpp
View file @
8fb5f4f4
...
...
@@ -36,7 +36,7 @@ NameEditDialog::NameEditDialog(QWidget *parent)
{
setWindowTitle
(
i18n
(
"Edit Contact Name"
));
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
;
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
this
)
;
setLayout
(
mainLayout
);
QFormLayout
*
layout
=
new
QFormLayout
;
...
...
src/editor/generalinfoeditor/phone/phonelistwidget.cpp
View file @
8fb5f4f4
...
...
@@ -31,10 +31,9 @@ using namespace Akonadi;
PhoneListWidget
::
PhoneListWidget
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
;
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
(
this
)
;
topLayout
->
setMargin
(
0
);
topLayout
->
setSpacing
(
0
);
setLayout
(
topLayout
);
QLabel
*
label
=
new
QLabel
(
i18n
(
"Phone"
),
this
);
label
->
setObjectName
(
QStringLiteral
(
"phonelistlabel"
));
...
...
src/editor/generalinfoeditor/web/weblistwidget.cpp
View file @
8fb5f4f4
...
...
@@ -32,10 +32,9 @@ using namespace Akonadi;
WebListWidget
::
WebListWidget
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
;
QVBoxLayout
*
topLayout
=
new
QVBoxLayout
(
this
)
;
topLayout
->
setMargin
(
0
);
topLayout
->
setSpacing
(
0
);
setLayout
(
topLayout
);
QLabel
*
label
=
new
QLabel
(
i18n
(
"Web"
),
this
);
label
->
setObjectName
(
QStringLiteral
(
"weblistlabel"
));
...
...
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