<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Aaron J. Seigo wrote:
<blockquote cite="mid:200905121345.17305.aseigo@kde.org" type="cite">
  <pre wrap="">On Tuesday 12 May 2009, SUJITH H wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">I am able to iterate the row's. But have no clue how to retrieve the url
of that sorted Favorite item :(
    </pre>
  </blockquote>
  <pre wrap=""><!---->
KUrl url = childData-&gt;data(Kickoff::UrlRole);
  </pre>
</blockquote>
<br>
I am getting segmentation fault when I run 'plasmoidviewer launcher'. <br>
I had modified the sortFavorites. So the method becomes:<br>
<br>
void FavoritesModel::sortFavorites(Qt::SortOrder order)<br>
{<br>
&nbsp;&nbsp;&nbsp; foreach (FavoritesModel *model, Private::models) {<br>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; model-&gt;d-&gt;headerItem-&gt;sortChildren(0, order);<br>
&nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp; FavoritesModel *model;<br>
&nbsp;&nbsp;&nbsp; QStandardItem *childData;<br>
&nbsp; &nbsp; for (int i = 0; i &lt; numberOfFavorites(); i++) {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; childData = model-&gt;d-&gt;headerItem-&gt;child(i, 0);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; kDebug() &lt;&lt; "Url = " &lt;&lt;
childData-&gt;data(Kickoff::UrlRole);<br>
&nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp; Private::saveFavorites();<br>
}<br>
<br>
<br>
Any clue why am getting segmentation fault here?<br>
<br>
<br>
Sujith H<br>
</body>
</html>