Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Games
KMuddy
Commits
fae0d949
Commit
fae0d949
authored
Sep 28, 2019
by
Tomas Mecir
Browse files
mapper fixes
parent
7c6f9b78
Changes
6
Hide whitespace changes
Inline
Side-by-side
AUTHORS
View file @
fae0d949
Tomas Mecir <
kmuddy@kmuddy
.com>
Tomas Mecir <
mecirt@gmail
.com>
configure
View file @
fae0d949
...
...
@@ -3,5 +3,5 @@ SRCDIR=$(pwd)
mkdir
../kmuddy-build
cd
../kmuddy-build
cmake
${
SRCDIR
}
-DCMAKE_BUILD_TYPE
=
release
-DCMAKE_INSTALL_PREFIX
=
`
k
de4
-config
--prefix
`
cmake
${
SRCDIR
}
-DCMAKE_BUILD_TYPE
=
release
-DCMAKE_INSTALL_PREFIX
=
`
k
f5
-config
--prefix
`
configure-debug
View file @
fae0d949
...
...
@@ -3,5 +3,5 @@ SRCDIR=$(pwd)
mkdir
../kmuddy-build
cd
../kmuddy-build
cmake
${
SRCDIR
}
-DCMAKE_BUILD_TYPE
=
debug
-DCMAKE_INSTALL_PREFIX
=
`
k
de4
-config
--prefix
`
cmake
${
SRCDIR
}
-DCMAKE_BUILD_TYPE
=
debug
-DCMAKE_INSTALL_PREFIX
=
`
k
f5
-config
--prefix
`
libs/CMakeLists.txt
View file @
fae0d949
...
...
@@ -58,7 +58,7 @@ add_library(kmuddycore SHARED ${kmuddycore_LIB_SRCS})
# TODO: get rid of the support libs
target_link_libraries
(
kmuddycore KF5::KCMUtils KF5::I18n KF5::Service KF5::KDELibs4Support Qt5::Script Qt5::Multimedia
)
set_target_properties
(
kmuddycore PROPERTIES VERSION
1
.0.0 SOVERSION
1
)
set_target_properties
(
kmuddycore PROPERTIES VERSION
2
.0.0 SOVERSION
2
)
install
(
TARGETS kmuddycore DESTINATION
${
LIB_INSTALL_DIR
}
)
...
...
plugins/mapper/cmapviewstatusbar.cpp
View file @
fae0d949
...
...
@@ -104,9 +104,7 @@ void CMapViewStatusbar::setZone(CMapZone *zone)
d
->
zonePicker
->
setCurrentIndex
(
zones
->
activeZone
());
}
if
(
d
->
zone
==
zone
)
return
;
d
->
zone
=
zone
;
d
->
levelPicker
->
setModel
(
zone
->
levelsModel
());
setLevel
(
d
->
manager
->
getActiveView
()
->
getCurrentlyViewedLevel
());
}
...
...
plugins/mapper/filefilters/cmapfilefilterxml.cpp
View file @
fae0d949
...
...
@@ -639,7 +639,7 @@ void CMapFileFilterXML::savePluginPropertiesForElement(CMapElement *element,QDom
plugin
->
saveElementProperties
(
element
,
&
pluginProperties
);
EntryMap
entries
=
pluginProperties
.
entryMap
(
"Properties"
);
for
(
EntryMap
::
ConstIterator
it
=
entries
.
b
egin
();
it
!=
entries
.
e
nd
();
++
it
)
for
(
EntryMap
::
ConstIterator
it
=
entries
.
constB
egin
();
it
!=
entries
.
constE
nd
();
++
it
)
{
pNode
.
setAttribute
(
it
.
key
(),
it
.
value
());
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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