<div dir="ltr">I have this kind of code in a .js file, referenced from the .qml file:<div><br></div><div>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(128,128,0)">var</span><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span><span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">new</span><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,85,175)">Array</span>(10*5);</pre><pre style="margin-top:0px;margin-bottom:0px"><br></pre><pre style="margin-top:0px;margin-bottom:0px">
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(0,128,0)">//Create</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">all</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">aliens</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">and</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">position</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">them</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">on</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">the</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">board</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">in</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">rows</span></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(128,128,0)">function</span><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">createAliens</span>()<span style="color:rgb(192,192,192)"> </span>{</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">//Row</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">1</span></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">component</span><span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,85,175)">Qt</span>.createComponent(<span style="color:rgb(0,128,0)">"alien1.qml"</span>);</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">var</span><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">y</span><span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,0,128)">topline</span>.y<span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,0,128)">topline</span>.height<span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span>Sizer.alienYGap();</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">for</span><span style="color:rgb(192,192,192)"> </span>(<span style="color:rgb(128,128,0)">var</span><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">i</span>=0;<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">i</span><10;<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">i</span>++)<span style="color:rgb(192,192,192)"> </span>{</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>]<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">component</span>.createObject(<span style="font-style:italic;color:rgb(0,0,128)">board</span>);</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].x<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span>((<span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].width<span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span>Sizer.alienXGap())<span style="color:rgb(192,192,192)"> </span>*<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">i</span>)<span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span>Sizer.alienXGap();</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].y<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">y</span>;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].objectName<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">"alien_"</span><span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">i</span>;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span>}</pre><pre style="margin-top:0px;margin-bottom:0px"><br></pre><pre style="margin-top:0px;margin-bottom:0px">etc etc etc</pre><pre style="margin-top:0px;margin-bottom:0px"><br></pre><pre style="margin-top:0px;margin-bottom:0px">}</pre><pre style="margin-top:0px;margin-bottom:0px"><br></pre><pre style="margin-top:0px;margin-bottom:0px">and then i might want to check a collision against all items in the array:</pre><pre style="margin-top:0px;margin-bottom:0px"><br></pre><pre style="margin-top:0px;margin-bottom:0px">
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(128,128,0)">function</span><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">checkBulletAlienCollision</span>()</pre>
<pre style="margin-top:0px;margin-bottom:0px">{</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">//Loop</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">over</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">each</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">alien,</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">checking</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">if</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">the</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">bullet</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">intersects</span></pre>
<pre style="margin-top:0px;margin-bottom:0px"><br></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">for</span><span style="color:rgb(192,192,192)"> </span>(<span style="color:rgb(128,128,0)">var</span><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">i</span>=0;<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">i</span><50;<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">i</span>++)<span style="color:rgb(192,192,192)"> </span>{</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">if</span><span style="color:rgb(192,192,192)"> </span>(<span style="font-style:italic;color:rgb(41,133,199)">bullet</span><span style="color:rgb(192,192,192)"> </span>&&<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>])<span style="color:rgb(192,192,192)"> </span>{<span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">//Check</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">if</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">objects</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">exist</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">first</span></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">if</span><span style="color:rgb(192,192,192)"> </span>(<span style="font-style:italic;color:rgb(41,133,199)">bullet</span>.x<span style="color:rgb(192,192,192)"> </span>><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].x<span style="color:rgb(192,192,192)"> </span>&&<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">bullet</span>.x<span style="color:rgb(192,192,192)"> </span><<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].x<span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].width)<span style="color:rgb(192,192,192)"> </span>{</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">if</span><span style="color:rgb(192,192,192)"> </span>((<span style="font-style:italic;color:rgb(41,133,199)">bullet</span>.y<span style="color:rgb(192,192,192)"> </span>><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].y<span style="color:rgb(192,192,192)"> </span>||<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">bullet</span>.y<span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">bullet</span>.height<span style="color:rgb(192,192,192)"> </span>><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].y)<span style="color:rgb(192,192,192)"> </span>&&<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">bullet</span>.y<span style="color:rgb(192,192,192)"> </span><<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].y<span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].height)<span style="color:rgb(192,192,192)"> </span>{</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">playSound</span>(<span style="color:rgb(0,128,0)">"killed"</span>);</pre>
<pre style="margin-top:0px;margin-bottom:0px"><br></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">score</span><span style="color:rgb(192,192,192)"> </span>+=<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].pointsAwarded;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,0,128)">scoretext</span>.text<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">"Score:</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">"</span><span style="color:rgb(192,192,192)"> </span>+<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">score</span>;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">bullet</span>.y<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span>-<span style="font-style:italic;color:rgb(41,133,199)">bullet</span>.height;<span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">//Move</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">the</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">bullet</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">offscreen</span></pre>
<pre style="margin-top:0px;margin-bottom:0px"><br></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,0,128)">explosion</span>.x<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].x<span style="color:rgb(192,192,192)"> </span>-<span style="color:rgb(192,192,192)"> </span>(<span style="font-style:italic;color:rgb(0,0,128)">explosion</span>.width<span style="color:rgb(192,192,192)"> </span>-<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].width)<span style="color:rgb(192,192,192)"> </span>/2;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,0,128)">explosion</span>.y<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].y<span style="color:rgb(192,192,192)"> </span>-<span style="color:rgb(192,192,192)"> </span>(<span style="font-style:italic;color:rgb(0,0,128)">explosion</span>.height<span style="color:rgb(192,192,192)"> </span>-<span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].height)<span style="color:rgb(192,192,192)"> </span>/2;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><br></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>].destroy();</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(41,133,199)">aliens</span>[<span style="font-style:italic;color:rgb(41,133,199)">i</span>]<span style="color:rgb(192,192,192)"> </span>=<span style="color:rgb(192,192,192)"> </span>null;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><br></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,0,128)">explosion</span>.play();</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">if</span><span style="color:rgb(192,192,192)"> </span>(<span style="font-style:italic;color:rgb(0,0,128)">alienanimation</span>.interval<span style="color:rgb(192,192,192)"> </span>><span style="color:rgb(192,192,192)"> </span>100)<span style="color:rgb(192,192,192)"> </span>{<span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">//Get</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">faster</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">when</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">a</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">alien</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">is</span><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(0,128,0)">killed</span></pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="font-style:italic;color:rgb(0,0,128)">alienanimation</span>.interval<span style="color:rgb(192,192,192)"> </span>-=<span style="color:rgb(192,192,192)"> </span>10;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span>}</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span><span style="color:rgb(128,128,0)">break</span>;</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span>}</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span>}</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span>}</pre>
<pre style="margin-top:0px;margin-bottom:0px"><span style="color:rgb(192,192,192)"> </span>}</pre>
<pre style="margin-top:0px;margin-bottom:0px">}</pre><pre style="margin-top:0px;margin-bottom:0px"><br></pre></pre></pre></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 6, 2014 at 9:04 AM, Peter Pykäläinen <span dir="ltr"><<a href="mailto:peter.pykalainen@gmail.com" target="_blank">peter.pykalainen@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Thanks Andrey!<br></div>Will test that too tonight.<span class="HOEnZb"><font color="#888888"><br></font></span></div><div class="gmail_extra"><span class="HOEnZb"><font color="#888888"><br clear="all"><div><br>// Peter Pykäläinen</div></font></span><div><div class="h5">
<br><div class="gmail_quote">On 6 October 2014 10:39, Andrey Kozhevnikov <span dir="ltr"><<a href="mailto:coderusinbox@gmail.com" target="_blank">coderusinbox@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div bgcolor="#FFFFFF" text="#000000">
use<br>
<br>
<tt>property Item object1</tt><tt><br>
</tt><tt>property Item object2</tt><tt><br>
</tt><tt><br>
</tt><tt>...</tt><tt><br>
</tt><tt><br>
</tt><tt>function createObjects() {</tt><tt><br>
</tt><tt>
object1 = component1.createObject(parent, paraneters)</tt><tt><br>
</tt><tt>
object2 = component2.createObject(parent, paraneters)</tt><tt><br>
</tt><tt> checkCollisionsFunction(object1, object2)</tt><tt><br>
</tt><tt>}</tt><br>
<br>
<div>06.10.2014 12:26, Peter Pykäläinen
пишет:<br>
</div>
<blockquote type="cite"><div><div>
<div dir="ltr">
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div>Hi,<br>
<br>
</div>
I have a problem with a dynamically created QML
object and referencing it.<br>
</div>
The problem is as follows:<br>
<br>
</div>
- Create a dynamic QML object with createObject,
assign signal to it. This works fine.<br>
</div>
- Create another dynamic QML object.<br>
</div>
- I would need to check collision of these two new
objects, I am using a timer to check that.<br>
</div>
- Now since I can not reference both objects with their IDs
I can't get the collision check to work.<br>
<br>
</div>
Any ideas how to achive this?<br>
<br>
</div>
I have tried to use a LlistModel to store all my objects, but
looping through them with JavaScript slows down my application
significantly, so this is not an option.<br clear="all">
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div><br>
// Peter Pykäläinen</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<fieldset></fieldset>
<br>
</div></div><span><pre>_______________________________________________
SailfishOS.org Devel mailing list
To unsubscribe, please send a mail to <a href="mailto:devel-unsubscribe@lists.sailfishos.org" target="_blank">devel-unsubscribe@lists.sailfishos.org</a></pre>
</span></blockquote>
<br>
</div>
<br>_______________________________________________<br>
SailfishOS.org Devel mailing list<br>
To unsubscribe, please send a mail to <a href="mailto:devel-unsubscribe@lists.sailfishos.org" target="_blank">devel-unsubscribe@lists.sailfishos.org</a><br></blockquote></div><br></div></div></div>
<br>_______________________________________________<br>
SailfishOS.org Devel mailing list<br>
To unsubscribe, please send a mail to <a href="mailto:devel-unsubscribe@lists.sailfishos.org">devel-unsubscribe@lists.sailfishos.org</a><br></blockquote></div><br></div>