Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Games
KMuddy
Commits
fae0d949
Commit
fae0d949
authored
Sep 28, 2019
by
Tomas Mecir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapper fixes
parent
7c6f9b78
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
7 deletions
+5
-7
AUTHORS
AUTHORS
+1
-1
configure
configure
+1
-1
configure-debug
configure-debug
+1
-1
libs/CMakeLists.txt
libs/CMakeLists.txt
+1
-1
plugins/mapper/cmapviewstatusbar.cpp
plugins/mapper/cmapviewstatusbar.cpp
+0
-2
plugins/mapper/filefilters/cmapfilefilterxml.cpp
plugins/mapper/filefilters/cmapfilefilterxml.cpp
+1
-1
No files found.
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
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