Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KMail Account Wizard
Commits
eac9df6e
Commit
eac9df6e
authored
May 29, 2019
by
Laurent Montel
😁
Browse files
Use QVector here
parent
131da245
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/setupmanager.cpp
View file @
eac9df6e
...
...
@@ -95,12 +95,12 @@ QObject *SetupManager::createKey()
return
connectObject
(
key
);
}
Q
List
<
SetupObject
*>
SetupManager
::
objectsToSetup
()
const
Q
Vector
<
SetupObject
*>
SetupManager
::
objectsToSetup
()
const
{
return
m_objectToSetup
;
}
Q
List
<
SetupObject
*>
SetupManager
::
setupObjects
()
const
Q
Vector
<
SetupObject
*>
SetupManager
::
setupObjects
()
const
{
return
m_setupObjects
;
}
...
...
src/setupmanager.h
View file @
eac9df6e
...
...
@@ -49,8 +49,8 @@ public:
void
setKey
(
const
GpgME
::
Key
&
key
);
void
setKeyPublishingMethod
(
Key
::
PublishingMethod
method
);
Q
List
<
SetupObject
*>
objectsToSetup
()
const
;
Q
List
<
SetupObject
*>
setupObjects
()
const
;
Q
Vector
<
SetupObject
*>
objectsToSetup
()
const
;
Q
Vector
<
SetupObject
*>
setupObjects
()
const
;
public
Q_SLOTS
:
Q_SCRIPTABLE
bool
personalDataAvailable
();
...
...
@@ -87,8 +87,8 @@ private Q_SLOTS:
private:
QString
m_name
,
m_email
,
m_password
;
Q
List
<
SetupObject
*>
m_objectToSetup
;
Q
List
<
SetupObject
*>
m_setupObjects
;
Q
Vector
<
SetupObject
*>
m_objectToSetup
;
Q
Vector
<
SetupObject
*>
m_setupObjects
;
SetupObject
*
m_currentSetupObject
=
nullptr
;
SetupPage
*
m_page
=
nullptr
;
KWallet
::
Wallet
*
m_wallet
=
nullptr
;
...
...
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