Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PI2 View
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PI2
PI2 View
Merge requests
!2
Port to GTK4
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Port to GTK4
gtkmm-4.0
into
master
Overview
0
Commits
10
Pipelines
0
Changes
17
Merged
Port to GTK4
Martin Kröning
requested to merge
gtkmm-4.0
into
master
Sep 30, 2021
Overview
0
Commits
10
Pipelines
0
Changes
17
GTK3
GTK4
Edited
Oct 2, 2021
by
Martin Kröning
0
0
Merge request reports
Compare
master
version 10
92c8a93a
Oct 1, 2021
version 9
5c5033ac
Oct 1, 2021
version 8
63335e17
Oct 1, 2021
version 7
11ebc1a0
Oct 1, 2021
version 6
b376630f
Oct 1, 2021
version 5
76fe2a4e
Oct 1, 2021
version 4
6f9422b1
Oct 1, 2021
version 3
88e6907d
Oct 1, 2021
version 2
bd5d589d
Oct 1, 2021
version 1
c1e3d679
Sep 30, 2021
master (base)
and
latest version
latest version
44387b68
10 commits,
Oct 1, 2021
version 10
92c8a93a
10 commits,
Oct 1, 2021
version 9
5c5033ac
10 commits,
Oct 1, 2021
version 8
63335e17
10 commits,
Oct 1, 2021
version 7
11ebc1a0
10 commits,
Oct 1, 2021
version 6
b376630f
9 commits,
Oct 1, 2021
version 5
76fe2a4e
9 commits,
Oct 1, 2021
version 4
6f9422b1
9 commits,
Oct 1, 2021
version 3
88e6907d
9 commits,
Oct 1, 2021
version 2
bd5d589d
9 commits,
Oct 1, 2021
version 1
c1e3d679
10 commits,
Sep 30, 2021
17 files
+
143
−
224
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
pi2-demo/src/Map.cpp
+
3
−
0
View file @ 44387b68
Edit in single-file editor
Open in Web IDE
Show full file
@@ -16,6 +16,9 @@
@@ -16,6 +16,9 @@
Map
::
Map
(
std
::
istream
&
is
,
std
::
string_view
windowTitle
)
Map
::
Map
(
std
::
istream
&
is
,
std
::
string_view
windowTitle
)
:
time
(
0
),
mapWindow
(
windowTitle
)
{
:
time
(
0
),
mapWindow
(
windowTitle
)
{
// Make sure to recognize `.` as decimal mark
is
.
imbue
(
std
::
locale
::
classic
());
std
::
string
type
;
std
::
string
type
;
while
(
is
>>
type
)
{
while
(
is
>>
type
)
{
if
(
type
==
"KREUZUNG"
)
{
if
(
type
==
"KREUZUNG"
)
{
Loading