<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"><br /></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 10:44 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 12:00 PM, Ram Kurvakat &lt;rkmaemo@gmx.com&gt; wrote: &gt; &gt; -- &gt; Sent from my Nokia N900 &gt; &gt; ----- Original message ----- &gt;&gt; Hi Ram! &gt;&gt; &gt;&gt;    Could you please post this questions to FN DiBo? &gt; A &gt; Hi Daniil, yes of course i can. &gt; I was asked for examples here so i replied. &gt; FN DiBo = forum nokia discussion board ?    Yes.</pre><pre><span class="Apple-style-span" style="font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;"><font class="Apple-style-span" face="monospace">FN DiBo post as requested ==&gt; </font><a href="http://discussion.forum.nokia.com/forum/showthread.php?p=742765">http://discussion.forum.nokia.com/forum/showthread.php?p=742765</a></span></pre></div></div></blockquote><pre><div><div><pre>Also took the liberty to raise a bug :)</pre><pre><a href="http://bugreports.qt.nokia.com/browse/QTBUG-11135">http://bugreports.qt.nokia.com/browse/QTBUG-11135</a></pre></div></div></pre><blockquote class="quote" type="cite"><div><div><pre> &gt;&gt;    BTW, why do create dialog dynamically and never free it? &gt; &gt; This is an example only to show the issue.    This is basically a bad habit.</pre><pre>Of course Im aware Daniil :-) thanks anyways ,</pre><pre>but now since you state that where do you expect to see the delete of the dialog in this main function ;-)</pre><pre> Thanks, Daniil.  &gt;&gt; Thanks, Daniil. &gt;&gt; &gt;&gt; On Tue, Jun 1, 2010 at 10:59 AM, Ram Kurvakat &lt;rkmaemo@gmx.com&gt; wrote: &gt;&gt; &gt; Daniil, Robin or anyone &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 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; From: Ram Kurvakat &gt;&gt; &gt; &gt;&gt; &gt; Sent: 05/29/10 10:32 AM &gt;&gt; &gt; &gt;&gt; &gt; To: Maemo-developers, viroteck@viroteck.net, Daniil Ivanov &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 example requested. &gt;&gt; &gt; &gt;&gt; &gt; Compile the example with qmake from /opt/qt4-maemo5/bin which is QT4.6 &gt;&gt; &gt; in PR1.1 and run on the device with QT4.6 libs from PR1.1 installed in &gt;&gt; &gt; /opt/qt4-maemo5/lib &gt;&gt; &gt; &gt;&gt; &gt; ~$:  ldd TEMP2 &gt;&gt; &gt; &gt;&gt; &gt; .... &gt;&gt; &gt; &gt;&gt; &gt; libQtGui.so.4 =&gt; /opt/qt4-maemo5/lib/libQtGui.so.4 (0x40142000) &gt;&gt; &gt; &gt;&gt; &gt; libQtCore.so.4 =&gt; /opt/qt4-maemo5/lib/libQtCore.so.4 (0x40bfd000) &gt;&gt; &gt; &gt;&gt; &gt; .... &gt;&gt; &gt; &gt;&gt; &gt; and 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; Compile the example with qmake from /usr/bin which is QT4.6 in PR1.2 &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; ~$:  ldd TEMP2 &gt;&gt; &gt; &gt;&gt; &gt; .... &gt;&gt; &gt; &gt;&gt; &gt; libQtGui.so.4 =&gt; /usr/lib/libQtGui.so.4 (0x40139000) &gt;&gt; &gt; &gt;&gt; &gt; libQtCore.so.4 =&gt; /usr/lib/libQtCore.so.4 (0x40bf4000) &gt;&gt; &gt; &gt;&gt; &gt; .... &gt;&gt; &gt; &gt;&gt; &gt; and you will see this &gt;&gt; &gt; &gt;&gt; &gt; http://bit.ly/bIpRi0 &gt;&gt; &gt; &gt;&gt; &gt; I think some default alignments may have been changed in the styles. &gt;&gt; &gt; &gt;&gt; &gt; Thanks again for 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; int main(int argc, char* argv[]) &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;     QScrollArea *scroll = new QScrollArea; &gt;&gt; &gt; &gt;&gt; &gt;     QWidget*    widget = new QWidget(scroll); &gt;&gt; &gt; &gt;&gt; &gt;     // Currency code &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;     QStringList dateformatlist; &gt;&gt; &gt; &gt;&gt; &gt;     dateformatlist &lt;&lt; &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;     QComboBox *dateformat = new QComboBox; &gt;&gt; &gt; &gt;&gt; &gt;     // Graph Period &gt;&gt; &gt; &gt;&gt; &gt;     QStringList periodlist; &gt;&gt; &gt; &gt;&gt; &gt;     periodlist &lt;&lt; &quot;current 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;     QComboBox *graphperiod = new QComboBox; &gt;&gt; &gt; &gt;&gt; &gt;     dialog-&gt;setStyleSheet(&quot;QDialog { border: 2px solid #8f8f91; ; &gt;&gt; &gt; border-radius: 15px; }&quot;); &gt;&gt; &gt; &gt;&gt; &gt;     QFormLayout *layout = new QFormLayout; &gt;&gt; &gt; &gt;&gt; &gt;     layout-&gt;addRow(&quot;currency code : &quot;, currency); &gt;&gt; &gt; &gt;&gt; &gt;     layout-&gt;addRow(&quot;display date format : &quot;, dateformat); &gt;&gt; &gt; &gt;&gt; &gt;     layout-&gt;addRow(&quot;default reports period: &quot;, graphperiod); &gt;&gt; &gt; &gt;&gt; &gt;     widget-&gt;setLayout(layout); &gt;&gt; &gt; &gt;&gt; &gt;     QHBoxLayout *mainlayout = new QHBoxLayout; &gt;&gt; &gt; &gt;&gt; &gt;     scroll-&gt;setWidget(widget); &gt;&gt; &gt; &gt;&gt; &gt;     mainlayout-&gt;addWidget(scroll, 0, Qt::AlignVCenter); &gt;&gt; &gt; &gt;&gt; &gt;     dialog-&gt;setLayout(mainlayout); &gt;&gt; &gt;     dialog-&gt;show(); &gt;&gt; &gt;     return app.exec(); &gt;&gt; &gt; } &gt;&gt; &gt; &gt;&gt; &gt; ----- Original Message ----- &gt;&gt; &gt; &gt;&gt; &gt; From: 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; Subject: Re: QT4.6 with PR1.2 has introduced issues &gt;&gt; &gt; &gt;&gt; &gt; On Fri, May 28, 2010 at 7:25 AM, Daniil Ivanov &gt;&gt; &gt; &lt;daniil.ivanov@gmail.com&gt; wrote: &gt; Hi Ram! &gt; &gt;  Screenshots do not say &gt;&gt; &gt; anything. &gt;  Without seeing the code it's not possible to say if it's &gt;&gt; &gt; because of &gt;  problems with the way how you constructed layouts of the &gt;&gt; &gt; widgets &gt;  or with Qt styles.  Seconding what Daniil says - to try &gt;&gt; &gt; pinpoint your issue (and look for workarounds or fixes), please &gt;&gt; &gt; produce a minimal testcase.  That is, a *minimal* example (as little &gt;&gt; &gt; code as possible, please! can't emphasise how important this is) which &gt;&gt; &gt; demonstrates the incorrect behaviour you are talking about. :)  &gt; &gt;&gt; &gt; Thanks, Daniil.  Best,  Robin Burchell mob: +447702671419 msn: &gt;&gt; &gt; msn@viroteck.net irc: w00t @ irc.freenode.net twr: &gt;&gt; &gt; http://twitter.com/w00teh lac: 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;</pre></div></div></blockquote><pre><div><div><pre><br /></pre></div></div></pre><p></p><br /></font><p></p><p> </p><div id="editor_signature"><p size="3" style="font-family:Verdana;"> </p></div></body></html>