<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

    
	<channel>

	<title>Qt DevNet forums: India</title>
	<link>http://qt-project.org/forums/viewforum/28/</link>
	<description>RSS feed for latest threads in India</description>
	<copyright>Copyright 2013 Qt Project</copyright>
	<docs>http://www.rssboard.org/rss-specification</docs>
	<generator>ExpressionEngine v2.3.1 http://expressionengine.com/</generator>
	<lastBuildDate>Wed, 27 Mar 2013 07:25:06 GMT</lastBuildDate>
	<atom:link href="http://qt-project.org/feeds/forum/28" rel="self" type="application/rss+xml" />

    

	
        <item>
            <title>need help with multiple viewport in Qt opengl</title>
            <link>http://qt-project.org/forums/viewthread/27992</link>
            <author>tikeshwar</author>
            <description><![CDATA[I am drawing my scene and tripod on separate viewports. First I draw my scene , then on another viewport on left corner, tripod is 
drawn. In debug mode,* everything runs fine and in release mode, tripod viewport is behaving weird*,
I don&#8217;t know, how release and debug mode can create difference in scene rendering.

	I am using Qt version 4.8.1
debug mode:

	

	Release mode:

	

	What&#8217;s troubling more is the fact that it runs fine in debug and runs weird in release mode.If anybody has seen such behavior before,
please let me know.

	I would like more insight in multiple viewport stuff,  here is my paintGL code
void &amp;nbsp;GLView::paintGL &amp;nbsp; &amp;nbsp; &amp;nbsp;&#40; &#41;
&#123;
&amp;nbsp;glClear&#40;GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT |GL_STENCIL_BUFFER_BIT&#41;;
&amp;nbsp;glLoadIdentity &#40;&#41;;
&amp;nbsp;
&amp;nbsp;glDisable &#40;GL_DEPTH_TEST&#41;;
&amp;nbsp;if&#40;mDrawBackground&#41;
&amp;nbsp; drawBackground&#40;&#41;;
&amp;nbsp;glEnable &#40;GL_DEPTH_TEST&#41;;
&amp;nbsp;
&amp;nbsp;glEnable &#40;GL_LIGHTING&#41;;
&amp;nbsp;setView&#40;&#41;;
&amp;nbsp;
&amp;nbsp;glEnable&#40;GL_POLYGON_OFFSET_FILL&#41;;
&amp;nbsp;glPolygonOffset&#40;1.0, 1.0&#41;;
&amp;nbsp;glTranslatef&#40;&#45;mBoundingBox&#45;&amp;gt;centroid&#40;&#41;.x&#40;&#41;, &#45;mBoundingBox&#45;&amp;gt;centroid&#40;&#41;.y&#40;&#41;, &#45;mBoundingBox&#45;&amp;gt;centroid&#40;&#41;.z&#40;&#41;&#41;;
&amp;nbsp;
&amp;nbsp;if&#40;mSurfacePolygonMode &amp;amp; PMS_SHADED&#41;
&amp;nbsp;&#123;
&amp;nbsp; glPolygonMode&#40;GL_FRONT_AND_BACK, GL_FILL&#41;;
&amp;nbsp; drawScene&#40;PMS_SHADED&#41;;
&amp;nbsp; glPolygonMode&#40;GL_FRONT_AND_BACK, GL_FILL&#41;;
&amp;nbsp;&#125;
&amp;nbsp;if&#40;mSurfacePolygonMode &amp;amp; PMS_LINE&#41;
&amp;nbsp;&#123;
&amp;nbsp; if&#40;mShowHiddenLines&#41;
&amp;nbsp; &#123;
&amp;nbsp; &amp;nbsp;//drawing boundaries
&amp;nbsp; &amp;nbsp;drawBoundary&#40;&#41;;
&amp;nbsp; &amp;nbsp;glColorMask&#40;GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE&#41;;
&amp;nbsp; &amp;nbsp;glDisable&#40;GL_DEPTH_TEST&#41;;
&amp;nbsp; &amp;nbsp;glEnable&#40;GL_STENCIL_TEST&#41;;
&amp;nbsp; &amp;nbsp;glStencilFunc&#40;GL_ALWAYS, 1, 1&#41;;
&amp;nbsp; &amp;nbsp;glStencilOp&#40;GL_REPLACE, GL_REPLACE, GL_REPLACE&#41;;
&amp;nbsp; &amp;nbsp;glPolygonMode&#40;GL_FRONT_AND_BACK,GL_LINE&#41;;
&amp;nbsp; &amp;nbsp;drawScene&#40;PMS_LINE&#41;;
&amp;nbsp; &amp;nbsp;glEnable&#40;GL_DEPTH_TEST&#41;;
&amp;nbsp; &amp;nbsp;glStencilFunc&#40;GL_EQUAL, 1, 1&#41;;
&amp;nbsp; &amp;nbsp;glStencilOp&#40;GL_KEEP, GL_KEEP, GL_KEEP&#41;;
&amp;nbsp; &amp;nbsp;glPolygonMode&#40;GL_FRONT_AND_BACK,GL_FILL&#41;;
&amp;nbsp; &amp;nbsp;drawScene&#40;PMS_SHADED&#41;;
&amp;nbsp; &amp;nbsp;glDisable&#40;GL_STENCIL_TEST&#41;;
&amp;nbsp; &amp;nbsp;glColorMask&#40;GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE&#41;;
&amp;nbsp; &amp;nbsp;glPolygonMode&#40;GL_FRONT_AND_BACK,GL_LINE&#41;;
&amp;nbsp; &amp;nbsp;drawScene&#40;PMS_LINE&#41;;
&amp;nbsp; &#125;
&amp;nbsp; else
&amp;nbsp; &#123;
&amp;nbsp; &amp;nbsp;glPolygonMode&#40;GL_FRONT_AND_BACK, GL_LINE&#41;;
&amp;nbsp; &amp;nbsp;drawScene&#40;PMS_LINE&#41;;
&amp;nbsp; &amp;nbsp;glPolygonMode&#40;GL_FRONT_AND_BACK, GL_LINE&#41;;
&amp;nbsp; &#125;
&amp;nbsp;&#125;
&amp;nbsp;if&#40;mSurfacePolygonMode &amp;amp; PMS_POINT&#41;
&amp;nbsp;&#123;
&amp;nbsp; glPointSize&#40;5.0f&#41;;
&amp;nbsp; glPolygonMode&#40;GL_FRONT_AND_BACK, GL_POINT&#41;;
&amp;nbsp; drawScene&#40;PMS_POINT&#41;;
&amp;nbsp; glPolygonMode&#40;GL_FRONT_AND_BACK, GL_POINT&#41;;
&amp;nbsp;&#125;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;drawFeatures&#40;&#41;;
&amp;nbsp;resetView&#40;&#41;;
&amp;nbsp;
* if&#40;mDrawTripod&#41;
&amp;nbsp; drawTripod&#40;&#41;;*
&#125;


	code for drawTripod
void GLWidget::drawTripod &amp;nbsp; &amp;nbsp; &amp;nbsp; &#40; &#41;
&#123;
&amp;nbsp;
&amp;nbsp;glMatrixMode&#40;GL_PROJECTION&#41;;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;glLoadIdentity&#40;&#41;;
&amp;nbsp; &amp;nbsp;
&amp;nbsp;/*glClearColor(0,0,0,1.0);
&amp;nbsp;glClear(GL_COLOR_BUFFER_BIT);*/
&amp;nbsp;glViewport&#40;&#45;mWindowWidth*0.4, &#45;mWindowHeight*0.4, mWindowWidth, mWindowHeight&#41;;
&amp;nbsp;glMatrixMode&#40;GL_PROJECTION&#41;;
&amp;nbsp;glLoadIdentity&#40;&#41;;
&amp;nbsp;glOrtho&#40;&#45;viewOrtho*aspectRatio,viewOrtho*aspectRatio,&#45;viewOrtho,viewOrtho,&#45;10*viewOrtho,10*viewOrtho&#41;;
&amp;nbsp;glMatrixMode&#40;GL_MODELVIEW&#41;;
&amp;nbsp;unSetView&#40;&#41;;
&amp;nbsp;
&amp;nbsp;glClear&#40;GL_DEPTH_BUFFER_BIT&#41;;
&amp;nbsp;glEnable&#40;GL_LIGHTING&#41;;
&amp;nbsp;glPolygonMode&#40;GL_FRONT_AND_BACK, GL_FILL&#41;;
&amp;nbsp;glColor3d&#40;0,0,0&#41;;
&amp;nbsp;renderText&#40;4.5,&#45;0.3,0.0, &amp;quot;X&amp;quot;&#41;;
&amp;nbsp;renderText&#40;&#45;0.2,4.5,0.0, &amp;quot;Y&amp;quot;&#41;;
&amp;nbsp;renderText&#40;0.0,0.0,4.5, &amp;quot;Z&amp;quot;&#41;;
&amp;nbsp;glCallList&#40;mTripodDL&#41;;
&amp;nbsp;glDisable&#40;GL_LIGHTING&#41;;
&amp;nbsp;glMatrixMode&#40;GL_MODELVIEW&#41;;
&amp;nbsp;
&#125;

need help with this urgently as this bug popped up just before delivery.]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/27992</guid>
            <pubDate>Tue, 21 May 2013 09:45:07 GMT</pubDate>
        </item>
	
        <item>
            <title>Inheriting from non&#45;virtual dtor base class</title>
            <link>http://qt-project.org/forums/viewthread/27834</link>
            <author>shanxS</author>
            <description><![CDATA[I lately realized that classes like QWidget [qt.gitorious.org] do not have a virtual dtor.

	But still lot many classes are using QWidget for public inheritance.

	And if I go by the guideline of Herb Sutter &#8211; Guideline #4 in this article [gotw.ca] then:

	
		A base class destructor should be either public and virtual, or protected and nonvirtual.
	

	So what philosophy do we have in Qt regarding public base class&#8217;s dtor ?
And what about the semi&#45;destruction of object when deleted from base class pointer ?

	Thanks for your time.
shashank]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/27834</guid>
            <pubDate>Thu, 16 May 2013 02:44:03 GMT</pubDate>
        </item>
	
        <item>
            <title>QT Training Centre in india</title>
            <link>http://qt-project.org/forums/viewthread/27752</link>
            <author>karthiksg</author>
            <description><![CDATA[Hi 
I need to know if there is any training centre for QT in chennai or any other location in india]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/27752</guid>
            <pubDate>Mon, 13 May 2013 22:42:01 GMT</pubDate>
        </item>
	
        <item>
            <title>QML MouseArea</title>
            <link>http://qt-project.org/forums/viewthread/26814</link>
            <author>mohanakannan</author>
            <description><![CDATA[Hello guys,
                   I I&#8217;m beginner to Qml&#8230;.I have been working in that for just 12 days..And now i have learnt some basic things&#8230;And i have been working in that mouse event area for some days&#8230;Let i will be clear about my problem..In a full screen, i have created icon for update and delete(delete icon and update icon).My task is to show the names of delete and update in the bottom of those icons,whenever i enters into that delete icon and update icon.If i enters in to that means ,its size is increasing and its ok&#8230;but i want to show the name of those icons  below those icons..Please help me guys.I will be so much thankful]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/26814</guid>
            <pubDate>Wed, 17 Apr 2013 08:43:17 GMT</pubDate>
        </item>
	
        <item>
            <title>how to translate a string into hindi</title>
            <link>http://qt-project.org/forums/viewthread/26370</link>
            <author>arkenoid</author>
            <description><![CDATA[hello all..
i am new to qt. and i want to convert the english text to hindi. But i couldnot find any devnagari family supported in Qfont..
I could convert text into various fonts like times new roman, sans serif etc, but not in hindi..

	&amp;nbsp;QFont f&#40;&amp;quot;Dev Kruti 010&amp;quot;,12,QFont::Bold&#41;;
&amp;nbsp; &amp;nbsp; QFont g&#40;&amp;quot;Times New Roman&amp;quot;,12,QFont::Bold&#41;;
&amp;nbsp; &amp;nbsp; ui&#45;&amp;gt;hindiEdit&#45;&amp;gt;setFont&#40;f&#41;;
&amp;nbsp; &amp;nbsp; ui&#45;&amp;gt;englishEdit&#45;&amp;gt;setFont&#40;g&#41;;


	But i could get hindi font in hindiEdit, rather some english family font is displayed..
can anyone help me in this?]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/26370</guid>
            <pubDate>Wed, 03 Apr 2013 10:43:24 GMT</pubDate>
        </item>
	
        <item>
            <title>webkitgetusermedia failed in qtwebkit2.3</title>
            <link>http://qt-project.org/forums/viewthread/25842</link>
            <author>JohanSaji</author>
            <description><![CDATA[Hi,
    I have build qtwebkit 2.3 enabling media&#45;strem for webrtc and copied the generated .so files to the lib in the qt4.8.4. When i tries to run the fancy&#45;browser in the qt example with webrtc enable site the getusermedia api fails with setting the error code (ec) as not_supported..
plz help&#8230;&#8230;&#8230;&#8230;&#8230;.

	I am using ubuntu 12.04 lts for bulding qt.]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/25842</guid>
            <pubDate>Tue, 19 Mar 2013 18:56:04 GMT</pubDate>
        </item>
	
        <item>
            <title>Need help with some code</title>
            <link>http://qt-project.org/forums/viewthread/25793</link>
            <author>santhosh</author>
            <description><![CDATA[Hii I have to do a program Im unable to do some implementations so please help me&#8230;.
The program is that we give two angle values &#8216;az&#8217; and &#8216;el&#8217; it should take those values as input and it should convert these values to some other angles like &#8216;x&#8217; and &#8216;y&#8217;&#8230;&#8230;
I have the code part for these conversion&#8230;.
Where should i add this code part in the program&#8230;..
and how to accept input values and give those values to conversion code&#8230;&#8230; please help me&#8230;..]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/25793</guid>
            <pubDate>Sat, 16 Mar 2013 13:44:00 GMT</pubDate>
        </item>
	
        <item>
            <title>Qt 5.0 Build Error &#45;&gt; /usr/bin/ld &#45;lGL not foud</title>
            <link>http://qt-project.org/forums/viewthread/25452</link>
            <author>nisarg369</author>
            <description><![CDATA[Hello Guys,

	I have installed Qt 5.0 SDK on Fedora 17 (32 bit). I am trying to make small GUI&#8217;s. 

	The problem is when I hit &#8220;Ctrl&#45;R&#8221; to build and have a look at the GUI application, I get a build error like this :

	make: Entering directory `/home/Nisarg/Documents/Qt Projects/untitled&#45;build&#45;Desktop_Qt_5_0_1_GCC_32bit&#45;Debug&#8217;
g++ &#45;Wl,&#45;rpath,/opt/Qt/5.0.1/gcc &#45;Wl,&#45;rpath,/opt/Qt/5.0.1/gcc/lib &#45;o untitled main.o mainwindow.o moc_mainwindow.o   &#45;L/opt/Qt/5.0.1/gcc/lib &#45;lQt5Widgets &#45;lQt5Gui &#45;lQt5Core &#45;lGL &#45;lpthread 
/usr/bin/ld: cannot find &#45;lGL
make: Leaving directory `/home/Nisarg/Documents/Qt Projects/untitled&#45;build&#45;Desktop_Qt_5_0_1_GCC_32bit&#45;Debug&#8217;
collect2: error: ld returned 1 exit status
make: *** [untitled] Error 1
04:07:17: The process &#8220;/usr/bin/make&#8221; exited with code 2.
Error while building/deploying project untitled (kit: Desktop Qt 5.0.1 GCC 32bit)
When executing step &#8216;Make&#8217;

	Any suggestions for the above warning ?]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/25452</guid>
            <pubDate>Wed, 06 Mar 2013 01:25:59 GMT</pubDate>
        </item>
	
        <item>
            <title>Deploy an QML App in Windows!</title>
            <link>http://qt-project.org/forums/viewthread/24534</link>
            <author>indruxneo</author>
            <description><![CDATA[Hi there! I had just started working on QT and QML for a project! 
I had compiled a sample program with QT5.1 and used dependency walker for solving the dll dependencies! 
While running the exe it asked for more dependencies at last following dll were added

	icudt49.dll
icuin49.dll
icuuc49.dll
libgcc_s_sjlj&#45;1.dll
libGLESv2.dll
libstdc++&#45;6.dll
libwinpthread&#45;1.dll
Qt5Core.dll
Qt5Declarative.dll
Qt5Gui.dll
Qt5Network.dll
Qt5Script.dll
Qt5Sql.dll
Qt5Widgets.dll
Qt5XmlPatterns.dll

	Atlast it gave me an VC Runtime error! Any idea how to solve this!]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/24534</guid>
            <pubDate>Tue, 05 Feb 2013 14:03:00 GMT</pubDate>
        </item>
	
        <item>
            <title>Error in compiling QT&#45;5.0 on ubuntu linux</title>
            <link>http://qt-project.org/forums/viewthread/23452</link>
            <author>manish.jamwal</author>
            <description><![CDATA[Hi Team

	I am new to QT and Forum. Error is coming, while compiling QT&#45;5.0 on ubuntu linux os. Error is mentioned below, please provide any pointer, how to fix it. The commands I executed are:

	$./configure &#45;developer&#45;build &#45;opensource
$make

	../../../include/QtGui/../../src/gui/painting/qpainter.h:127:14: note: QPainter::QPainter(QPaintDevice*)
../../../include/QtGui/../../src/gui/painting/qpainter.h:127:14: note:   no known conversion for argument 1 from ‘QOpenGLPaintDevice*’ to ‘QPaintDevice*’
../../../include/QtGui/../../src/gui/painting/qpainter.h:126:5: note: QPainter::QPainter()
../../../include/QtGui/../../src/gui/painting/qpainter.h:126:5: note:   candidate expects 0 arguments, 1 provided
openglwindow.cpp: In member function ‘void OpenGLWindow::renderNow()’:
openglwindow.cpp:137:44: error: invalid use of incomplete type ‘struct QOpenGLContext’
../../../include/QtGui/../../src/gui/kernel/qsurfaceformat.h:51:7: error: forward declaration of ‘struct QOpenGLContext’
openglwindow.cpp:138:18: error: invalid use of incomplete type ‘struct QOpenGLContext’
../../../include/QtGui/../../src/gui/kernel/qsurfaceformat.h:51:7: error: forward declaration of ‘struct QOpenGLContext’
openglwindow.cpp:139:18: error: invalid use of incomplete type ‘struct QOpenGLContext’
../../../include/QtGui/../../src/gui/kernel/qsurfaceformat.h:51:7: error: forward declaration of ‘struct QOpenGLContext’
openglwindow.cpp:144:14: error: invalid use of incomplete type ‘struct QOpenGLContext’
../../../include/QtGui/../../src/gui/kernel/qsurfaceformat.h:51:7: error: forward declaration of ‘struct QOpenGLContext’
openglwindow.cpp:147:35: error: ‘initializeOpenGLFunctions’ was not declared in this scope
openglwindow.cpp:153:14: error: invalid use of incomplete type ‘struct QOpenGLContext’
../../../include/QtGui/../../src/gui/kernel/qsurfaceformat.h:51:7: error: forward declaration of ‘struct QOpenGLContext’
make4: *** [.obj/debug&#45;shared/openglwindow.o] Error 1
make4: Leaving directory `/home/qt&#45;everywhere&#45;opensource&#45;src&#45;5.0.0/qtbase/examples/gui/openglwindow&#8217;
make3: *** [sub&#45;openglwindow&#45;make_first] Error 2
make3: Leaving directory `/home/qt&#45;everywhere&#45;opensource&#45;src&#45;5.0.0/qtbase/examples/gui&#8217;
make2: *** [sub&#45;gui&#45;make_first] Error 2
make2: Leaving directory `/home/qt&#45;everywhere&#45;opensource&#45;src&#45;5.0.0/qtbase/examples&#8217;
make1: *** [sub&#45;examples&#45;make_first] Error 2
make1: Leaving directory `/home/qt&#45;everywhere&#45;opensource&#45;src&#45;5.0.0/qtbase&#8217;
make: *** [module&#45;qtbase&#45;make_first] Error 2]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/23452</guid>
            <pubDate>Sun, 06 Jan 2013 14:05:57 GMT</pubDate>
        </item>
	
        <item>
            <title>Simulation Project..</title>
            <link>http://qt-project.org/forums/viewthread/23042</link>
            <author>YPanhwar</author>
            <description><![CDATA[Hi, Iam new at Qt. 
The Project i want to is the simulation (animations) of the data structures like linked list, queues, stacks, trees and heeps!! 
I dont have any idea how to do that!! i have sound knowledge of c++. Can somebody help me out from where to start and what to learn first as i can make my project in less time.. thanks looking forward for the help .. Thanks]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/23042</guid>
            <pubDate>Tue, 25 Dec 2012 08:43:11 GMT</pubDate>
        </item>
	
        <item>
            <title>About .net support?</title>
            <link>http://qt-project.org/forums/viewthread/22773</link>
            <author>Praveen.kumar</author>
            <description><![CDATA[Hell I am new to this group.Is this type of graphical controls can i implement in .net technology?]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/22773</guid>
            <pubDate>Sat, 15 Dec 2012 06:57:14 GMT</pubDate>
        </item>
	
        <item>
            <title>Compilation Problem</title>
            <link>http://qt-project.org/forums/viewthread/22723</link>
            <author>sumitparakh</author>
            <description><![CDATA[Hello guys,I am very new in QT.And in installed QT 5.0..When i try to build a project then it says that &#8220;QT needs a compiler for building&#8221;&#8230;.Plz help..]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/22723</guid>
            <pubDate>Thu, 13 Dec 2012 12:26:18 GMT</pubDate>
        </item>
	
        <item>
            <title>Error while building project</title>
            <link>http://qt-project.org/forums/viewthread/22674</link>
            <author>saidhy</author>
            <description><![CDATA[I have downloaded QT 4.6 from QT site its size about 270 MB, than I installed it on my computer (windows system), it works very well with the simple programs such hello world(include only main file) but does not work with the programs that are complex relatively (include the main, cpp, and header file), and sends message like the following

	\..\..\..\Qt\2010.02.1\qt\mkspecs\win32&#45;g++&#8221; &#45;o debug\main.o main.cpp
mingw32&#45;make1: Leaving directory `C:/Users/Smart/Documents/converterdailog&#8217;
mingw32&#45;make: Leaving directory `C:/Users/Smart/Documents/converterdailog&#8217;
main.cpp:3:33: error: ByteConverterDialog.h: No such file or directory
main.cpp: In function &#8216;int qMain(int, char**)&#8217;:
main.cpp:7: error: &#8216;ByteConverterDialog&#8217; was not declared in this scope
main.cpp:7: error: expected &#8216;;&#8217; before &#8216;bc&#8217;
main.cpp:8: error: &#8216;bc&#8217; was not declared in this scope
mingw32&#45;make1: *** [debug/main.o] Error 1
mingw32&#45;make: *** [debug] Error 2
Exited with code 2.
Error while building project converterdailog
When executing build step &#8216;Make&#8217;]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/22674</guid>
            <pubDate>Tue, 11 Dec 2012 17:47:42 GMT</pubDate>
        </item>
	
        <item>
            <title>QRadioButton &#45;&gt; setcheked(bool) problem</title>
            <link>http://qt-project.org/forums/viewthread/22156</link>
            <author>Sayan Bera</author>
            <description><![CDATA[in a groupbox 8 radiobtns are added and a single btn is set as checked. when anyone of the radiobtn is clicked, that particular btn is checked and the checked one gets unchecked by default. But sometimes while clicking anyone of the btn randomly, the clicked one doesn&#8217;t gets checked and previously checked btn gets unchecked. Apart from radiobtns,there are 4&#45;5 QMeter widget(downloaded from qt&#45;app.org) and few pushbtns in the application.]]></description>
            <guid isPermaLink="false">http://qt-project.org/forums/viewthread/22156</guid>
            <pubDate>Fri, 23 Nov 2012 08:49:46 GMT</pubDate>
        </item>
	

	</channel>
</rss>