Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
43407ddd
Commit
43407ddd
authored
Nov 20, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed url for label
parent
990e2f29
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
4 deletions
+15
-4
index.html
resources/etc/Tutorial/tutorial_en/index.html
+1
-1
index.html
resources/etc/Tutorial/tutorial_fr/index.html
+1
-1
UBSvgSubsetAdaptor.cpp
src/adaptors/UBSvgSubsetAdaptor.cpp
+13
-2
No files found.
resources/etc/Tutorial/tutorial_en/index.html
View file @
43407ddd
...
...
@@ -45,7 +45,7 @@ body {
<div
class=
"g200"
>
<a
href=
"http://planete.sankore.org/xwiki/bin/view/Pedagogique/User+manual+EN+2.00"
target=
"_blank"
><img
src=
"images/manuel.png"
style=
"width: 188px; border: 1px solid #999"
/></a>
<br/><br/><a
href=
"http://planete.sankore.org/xwiki/bin/view/Pedagogique/
Le+manuel+qui+manquait
"
target=
"_blank"
>
<br/><br/><a
href=
"http://planete.sankore.org/xwiki/bin/view/Pedagogique/
User+manual+EN+2.00
"
target=
"_blank"
>
<h5
style=
"text-align: center;"
>
The user manual
</h5></a>
</div>
...
...
resources/etc/Tutorial/tutorial_fr/index.html
View file @
43407ddd
...
...
@@ -45,7 +45,7 @@ body {
<div
class=
"g200"
>
<a
href=
"http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+du+logiciel+FR+2.00"
target=
"_blank"
><img
src=
"images/manuel.png"
style=
"width: 188px; border: 1px solid #999"
/></a>
<br/><br/><a
href=
"http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+
qui+manquait
"
target=
"_blank"
>
<br/><br/><a
href=
"http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+
du+logiciel+FR+2.00
"
target=
"_blank"
>
<h5
style=
"text-align: center;"
>
Le manuel d'utilisation
</h5></a>
</div>
...
...
src/adaptors/UBSvgSubsetAdaptor.cpp
View file @
43407ddd
...
...
@@ -1025,6 +1025,8 @@ UBGraphicsGroupContainerItem* UBSvgSubsetAdaptor::UBSvgSubsetReader::readGroup()
UBGraphicsGroupContainerItem
*
curGroup
=
readGroup
();
if
(
curGroup
)
groupContainer
.
append
(
curGroup
);
else
qDebug
()
<<
"this is an error"
;
}
else
if
(
mXmlReader
.
name
()
==
tElement
)
{
...
...
@@ -1042,7 +1044,10 @@ UBGraphicsGroupContainerItem* UBSvgSubsetAdaptor::UBSvgSubsetReader::readGroup()
}
else
// item
{
groupContainer
.
append
(
curItem
);
if
(
curItem
)
groupContainer
.
append
(
curItem
);
else
qDebug
()
<<
"this is an error"
;
}
}
else
{
mXmlReader
.
skipCurrentElement
();
...
...
@@ -1078,7 +1083,10 @@ UBGraphicsGroupContainerItem* UBSvgSubsetAdaptor::UBSvgSubsetReader::readGroup()
if
(
pStrokesGroup
)
{
QGraphicsItem
*
strokeGroup
=
qgraphicsitem_cast
<
QGraphicsItem
*>
(
pStrokesGroup
);
groupContainer
.
append
(
strokeGroup
);
if
(
strokeGroup
)
groupContainer
.
append
(
strokeGroup
);
else
qDebug
()
<<
"this is an error"
;
}
}
...
...
@@ -1126,6 +1134,9 @@ QGraphicsItem *UBSvgSubsetAdaptor::UBSvgSubsetReader::readElementFromGroup()
QString
uuid
=
id
.
right
(
QUuid
().
toString
().
size
());
result
=
mScene
->
itemForUuid
(
QUuid
(
uuid
));
if
(
!
result
)
qDebug
()
<<
"uuid "
<<
uuid
;
mXmlReader
.
skipCurrentElement
();
mXmlReader
.
readNext
();
...
...
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