Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dap-ui-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
7
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dap
dap-ui-sdk
Merge requests
!160
Bugs 4482
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Bugs 4482
bugs-4482
into
master
Overview
0
Commits
60
Pipelines
0
Changes
46
Closed
konstantin.kukharenko
requested to merge
bugs-4482
into
master
4 years ago
Overview
0
Commits
60
Pipelines
0
Changes
46
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c8c7ea84
60 commits,
4 years ago
46 files
+
581
−
205
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
46
Search (e.g. *.vue) (Ctrl+P)
core/DapDataLocal.cpp
+
10
−
0
Options
@@ -148,6 +148,16 @@ void DapDataLocal::saveAuthorizationData()
this
->
saveEncriptedSetting
(
this
->
TEXT_PASSWORD
,
this
->
password
());
}
void
DapDataLocal
::
setLicenseTermTill
(
const
QString
&
utcDate
)
{
this
->
m_serialKeyData
->
setLicenseTermTill
(
utcDate
);
}
const
QDateTime
&
DapDataLocal
::
getLicenseTermTill
()
{
return
this
->
m_serialKeyData
->
getLicenseTermTill
();
}
void
DapDataLocal
::
saveSerialKeyData
()
{
if
(
m_serialKeyData
)
Loading