<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title></title><meta http-equiv="Content-type" content="text/html; charset=UTF-8" /><style type="text/css">p { margin:0px; padding:0px; }</style></head><body style='background-color:rgb(255, 255, 255);background-image:none;background-repeat:repeat;background-position:0% 0%;font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;font-size:12px;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;padding-top:5px;padding-bottom:5px;padding-left:5px;padding-right:5px;'><p><span style="font-family:Verdana;"><font size="3"><span class="Apple-style-span" style="font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;"><blockquote class="quote" type="cite" style="padding-left:5px;margin-left:5px;margin-bottom:0px;margin-top:0px;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204, 204, 204);"><div><div><pre>&quot;In proper place, of course:      QDialog *dialog = new QDialog;     dialog-&gt;show();      int ret = app.exec();      delete dialog;     return ret;     But in fact it's much easier to allocate dialog statically.&quot; </pre></div></div></blockquote><div><div><div><pre>Hi Daniil, </pre><pre>the example only contains a main function, there is no need for that delete, </pre><pre>its quite redundant as the heap is cleared anyways after the return and app exits in the example ,is it not ?</pre><pre>It would have been necessary had this been allocated in some custom class. </pre><pre>cheers</pre><pre>krk969</pre><pre><br /></pre></div></div></div></span></font></span></p><font size="3"><p></p><blockquote class="quote" type="cite"><p>----- Original Message -----</p><p>From: Daniil Ivanov</p><p>Sent: 06/01/10 11:34 AM</p><p>To: Ram Kurvakat</p><p>Subject: Re: QT4.6 with PR1.2 has introduced issues</p><br /><div><div><pre>On Tue, Jun 1, 2010 at 1:16 PM, Ram Kurvakat &lt;rkmaemo@gmx.com&gt; wrote: &gt; &gt; ----- Original Message ----- &gt; &gt; From: Daniil Ivanov &gt; &gt; Sent: 06/01/10 10:44 AM &gt; &gt; To: Ram Kurvakat &gt; &gt; Subject: Re: QT4.6 with PR1.2 has introduced issues &gt; &gt; On Tue, Jun 1, 2010 at 12:00 PM, Ram Kurvakat &lt;rkmaemo@gmx.com&gt; wrote: &gt; &gt; &gt; -- &gt; Sent from my Nokia N900 &gt; &gt; ----- Original message ----- &gt;&gt; Hi Ram! &gt;&gt; &gt;&gt;&gt;    Could you please post this questions to FN DiBo? &gt; A &gt; Hi Daniil, yes &gt; of course i can. &gt; I was asked for examples here so i replied. &gt; FN DiBo = &gt; forum nokia discussion board ?    Yes. &gt; &gt; FN DiBo post as requested ==&gt; &gt; http://discussion.forum.nokia.com/forum/showthread.php?p=742765 &gt; &gt; Also took the liberty to raise a bug :) &gt; &gt; http://bugreports.qt.nokia.com/browse/QTBUG-11135 &gt; &gt;  &gt;&gt;    BTW, why do create dialog dynamically and never free it? &gt; &gt; This is &gt; an example only to show the issue.    This is basically a bad habit. &gt; &gt; Of course Im aware Daniil :-) thanks anyways , &gt; &gt; but now since you state that where do you expect to see the delete of the &gt; dialog in this main function ;-)    In proper place, of course:      QDialog *dialog = new QDialog;     dialog-&gt;show();      int ret = app.exec();      delete dialog;     return ret;     But in fact it's much easier to allocate dialog statically.  Thanks, Daniil.  &gt; &gt;  Thanks, Daniil.  &gt;&gt; Thanks, Daniil. &gt;&gt; &gt;&gt; On Tue, Jun 1, 2010 at 10:59 AM, &gt; Ram Kurvakat &lt;rkmaemo@gmx.com&gt; wrote: &gt;&gt; &gt; Daniil, Robin or anyone &gt;&gt; &gt; &gt;&gt; &gt; &gt; did you get a chance to look at this one please ? &gt;&gt; &gt; &gt;&gt; &gt; thanks for your &gt; time, &gt;&gt; &gt; &gt;&gt; &gt; cheers &gt;&gt; &gt; &gt;&gt; &gt; krk969 &gt;&gt; &gt; &gt;&gt; &gt; ----- Original Message &gt; ----- &gt;&gt; &gt; &gt;&gt; &gt; From: Ram Kurvakat &gt;&gt; &gt; &gt;&gt; &gt; Sent: 05/29/10 10:32 AM &gt;&gt; &gt; &gt;&gt; &gt;&gt; To: Maemo-developers, viroteck@viroteck.net, Daniil Ivanov &gt;&gt; &gt; &gt;&gt; &gt; &gt; Subject: Re: QT4.6 with PR1.2 has introduced issues &gt;&gt; &gt; &gt;&gt; &gt; Here is the &gt; example requested. &gt;&gt; &gt; &gt;&gt; &gt; Compile the example with qmake from &gt; /opt/qt4-maemo5/bin which is QT4.6 &gt;&gt; &gt; in PR1.1 and run on the device with &gt; QT4.6 libs from PR1.1 installed in &gt;&gt; &gt; /opt/qt4-maemo5/lib &gt;&gt; &gt; &gt;&gt; &gt; ~$: &gt;  ldd TEMP2 &gt;&gt; &gt; &gt;&gt; &gt; .... &gt;&gt; &gt; &gt;&gt; &gt; libQtGui.so.4 =&gt; &gt; /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000) &gt;&gt; &gt; &gt;&gt; &gt; libQtCore.so.4 =&gt; &gt; /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000) &gt;&gt; &gt; &gt;&gt; &gt; .... &gt;&gt; &gt; &gt;&gt; &gt; and &gt; this is the result &gt;&gt; &gt; &gt;&gt; &gt; http://bit.ly/bH2ApK &gt;&gt; &gt; &gt;&gt; &gt; Then &gt;&gt; &gt; &gt;&gt; &gt; &gt; Compile the example with qmake from /usr/bin which is QT4.6 in PR1.2 &gt;&gt; &gt; &gt; and run on the device with QT4.6 libs from PR1.2 installed in /usr/lib &gt;&gt; &gt; &gt;&gt;&gt; &gt; ~$:  ldd TEMP2 &gt;&gt; &gt; &gt;&gt; &gt; .... &gt;&gt; &gt; &gt;&gt; &gt; libQtGui.so.4 =&gt; &gt; /usr/lib/libQtGui.so.4 (0x40139000) &gt;&gt; &gt; &gt;&gt; &gt; libQtCore.so.4 =&gt; &gt; /usr/lib/libQtCore.so.4 (0x40bf4000) &gt;&gt; &gt; &gt;&gt; &gt; .... &gt;&gt; &gt; &gt;&gt; &gt; and you will &gt; see this &gt;&gt; &gt; &gt;&gt; &gt; http://bit.ly/bIpRi0 &gt;&gt; &gt; &gt;&gt; &gt; I think some default &gt; alignments may have been changed in the styles. &gt;&gt; &gt; &gt;&gt; &gt; Thanks again for &gt; taking a look. &gt;&gt; &gt; &gt;&gt; &gt; #include &lt;QtGui&gt; &gt;&gt; &gt; &gt;&gt; &gt; #include &lt;QApplication&gt; &gt;&gt;&gt; &gt; &gt;&gt; &gt; int main(int argc, char* argv[]) &gt;&gt; &gt; &gt;&gt; &gt; { &gt;&gt; &gt; &gt;&gt; &gt; &gt;  QApplication app(argc, argv); &gt;&gt; &gt; &gt;&gt; &gt;     QDialog *dialog = new QDialog; &gt;&gt;&gt; &gt; &gt;&gt; &gt;     QScrollArea *scroll = new QScrollArea; &gt;&gt; &gt; &gt;&gt; &gt;     QWidget* &gt;    widget = new QWidget(scroll); &gt;&gt; &gt; &gt;&gt; &gt;     // Currency code &gt;&gt; &gt; &gt;&gt; &gt; &gt;  QLineEdit *currency = new QLineEdit(dialog); &gt;&gt; &gt; &gt;&gt; &gt;     // Date format &gt;&gt;&gt; &gt; &gt;&gt; &gt;     QStringList dateformatlist; &gt;&gt; &gt; &gt;&gt; &gt;     dateformatlist &lt;&lt; &gt; &quot;dd-MM-yyyy&quot; &lt;&lt; &quot;MM-dd-yyyy&quot; &lt;&lt; &quot;dd-MMM-yyyy&quot; &lt;&lt; &gt;&gt; &gt; &quot;MMM-dd-yyyy&quot;; &gt;&gt; &gt; &gt;&gt; &gt;&gt;     QComboBox *dateformat = new QComboBox; &gt;&gt; &gt; &gt;&gt; &gt;     // Graph Period &gt;&gt;&gt; &gt; &gt;&gt; &gt;     QStringList periodlist; &gt;&gt; &gt; &gt;&gt; &gt;     periodlist &lt;&lt; &quot;current &gt; day&quot; &lt;&lt; &quot;current month&quot; &lt;&lt; &quot;current week&quot; &lt;&lt; &gt;&gt; &gt; &quot;current year&quot;; &gt;&gt; &gt; &gt;&gt; &gt; &gt;     QComboBox *graphperiod = new QComboBox; &gt;&gt; &gt; &gt;&gt; &gt; &gt;  dialog-&gt;setStyleSheet(&quot;QDialog { border: 2px solid #8f8f91; ; &gt;&gt; &gt; &gt; border-radius: 15px; }&quot;); &gt;&gt; &gt; &gt;&gt; &gt;     QFormLayout *layout = new &gt; QFormLayout; &gt;&gt; &gt; &gt;&gt; &gt;     layout-&gt;addRow(&quot;currency code : &quot;, currency); &gt;&gt; &gt;&gt; &gt;&gt; &gt;     layout-&gt;addRow(&quot;display date format : &quot;, dateformat); &gt;&gt; &gt; &gt;&gt; &gt; &gt;     layout-&gt;addRow(&quot;default reports period: &quot;, graphperiod); &gt;&gt; &gt; &gt;&gt; &gt; &gt;  widget-&gt;setLayout(layout); &gt;&gt; &gt; &gt;&gt; &gt;     QHBoxLayout *mainlayout = new &gt; QHBoxLayout; &gt;&gt; &gt; &gt;&gt; &gt;     scroll-&gt;setWidget(widget); &gt;&gt; &gt; &gt;&gt; &gt; &gt;  mainlayout-&gt;addWidget(scroll, 0, Qt::AlignVCenter); &gt;&gt; &gt; &gt;&gt; &gt; &gt;  dialog-&gt;setLayout(mainlayout); &gt;&gt; &gt;     dialog-&gt;show(); &gt;&gt; &gt;     return &gt; app.exec(); &gt;&gt; &gt; } &gt;&gt; &gt; &gt;&gt; &gt; ----- Original Message ----- &gt;&gt; &gt; &gt;&gt; &gt; From: &gt; Robin Burchell &gt;&gt; &gt; &gt;&gt; &gt; Sent: 05/28/10 10:36 AM &gt;&gt; &gt; &gt;&gt; &gt; To: Daniil Ivanov &gt;&gt;&gt; &gt; &gt;&gt; &gt; Subject: Re: QT4.6 with PR1.2 has introduced issues &gt;&gt; &gt; &gt;&gt; &gt; On &gt; Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov &gt;&gt; &gt; &lt;daniil.ivanov@gmail.com&gt; &gt; wrote: &gt; Hi Ram! &gt; &gt;  Screenshots do not say &gt;&gt; &gt; anything. &gt;  Without &gt; seeing the code it's not possible to say if it's &gt;&gt; &gt; because of &gt;  problems &gt; with the way how you constructed layouts of the &gt;&gt; &gt; widgets &gt;  or with Qt &gt; styles.  Seconding what Daniil says - to try &gt;&gt; &gt; pinpoint your issue (and &gt; look for workarounds or fixes), please &gt;&gt; &gt; produce a minimal testcase. &gt; That is, a *minimal* example (as little &gt;&gt; &gt; code as possible, please! can't &gt; emphasise how important this is) which &gt;&gt; &gt; demonstrates the incorrect &gt; behaviour you are talking about. :)  &gt; &gt;&gt; &gt; Thanks, Daniil.  Best,  Robin &gt; Burchell mob: +447702671419 msn: &gt;&gt; &gt; msn@viroteck.net irc: w00t @ &gt; irc.freenode.net twr: &gt;&gt; &gt; http://twitter.com/w00teh lac: &gt; http://identi.ca/w00t &gt;&gt; &gt; &gt;&gt; &gt; &gt;&gt; &gt; &gt;&gt; &gt; &gt;&gt; &gt; &gt;&gt; &gt; &gt;&gt; &gt; &gt;&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt;</pre></div></div></blockquote><p></p><br /></font><p></p><p> </p><div id="editor_signature"><p size="3" style="font-family:Verdana;"> </p></div></body></html>