Fixed some qt deprecation warnings
This commit is contained in:
@@ -63,7 +63,6 @@ int main(int argc, char **argv)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// OpenGL check
|
// OpenGL check
|
||||||
QApplication::setColorSpec( QApplication::CustomColor );
|
|
||||||
QApplication app(argc,argv);
|
QApplication app(argc,argv);
|
||||||
|
|
||||||
if ( !QGLFormat::hasOpenGL() ) {
|
if ( !QGLFormat::hasOpenGL() ) {
|
||||||
|
|||||||
@@ -57,7 +57,6 @@
|
|||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
// OpenGL check
|
// OpenGL check
|
||||||
QApplication::setColorSpec( QApplication::CustomColor );
|
|
||||||
QApplication app(argc,argv);
|
QApplication app(argc,argv);
|
||||||
|
|
||||||
if ( !QGLFormat::hasOpenGL() ) {
|
if ( !QGLFormat::hasOpenGL() ) {
|
||||||
@@ -67,7 +66,7 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
|
|
||||||
// create widget
|
// create widget
|
||||||
ProgViewerWidget w(0);
|
ProgViewerWidget w(nullptr);
|
||||||
w.resize(400, 400);
|
w.resize(400, 400);
|
||||||
w.show();
|
w.show();
|
||||||
|
|
||||||
|
|||||||
@@ -60,12 +60,11 @@ void usage_and_exit(int xcode);
|
|||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
// OpenGL check
|
// OpenGL check
|
||||||
QApplication::setColorSpec( QApplication::CustomColor );
|
|
||||||
QApplication app(argc,argv);
|
QApplication app(argc,argv);
|
||||||
|
|
||||||
if ( !QGLFormat::hasOpenGL() ) {
|
if ( !QGLFormat::hasOpenGL() ) {
|
||||||
QString msg = "System has no OpenGL support!";
|
QString msg = "System has no OpenGL support!";
|
||||||
QMessageBox::critical( 0, QString("OpenGL"), msg + QString(argv[1]) );
|
QMessageBox::critical( nullptr, QString("OpenGL"), msg + QString(argv[1]) );
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,6 @@
|
|||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
// OpenGL check
|
// OpenGL check
|
||||||
QApplication::setColorSpec( QApplication::CustomColor );
|
|
||||||
QApplication app(argc,argv);
|
QApplication app(argc,argv);
|
||||||
|
|
||||||
if ( !QGLFormat::hasOpenGL() ) {
|
if ( !QGLFormat::hasOpenGL() ) {
|
||||||
@@ -66,7 +65,7 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
|
|
||||||
// create widget
|
// create widget
|
||||||
SubdivideWidget* w = new SubdivideWidget(0, "Subdivider");
|
SubdivideWidget* w = new SubdivideWidget(nullptr, "Subdivider");
|
||||||
|
|
||||||
w->resize(400, 400);
|
w->resize(400, 400);
|
||||||
w->show();
|
w->show();
|
||||||
|
|||||||
@@ -55,7 +55,6 @@
|
|||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
// OpenGL check
|
// OpenGL check
|
||||||
QApplication::setColorSpec( QApplication::CustomColor );
|
|
||||||
QApplication app(argc,argv);
|
QApplication app(argc,argv);
|
||||||
|
|
||||||
|
|
||||||
@@ -66,7 +65,7 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
// create widget
|
// create widget
|
||||||
VDPMSynthesizerViewerWidget*
|
VDPMSynthesizerViewerWidget*
|
||||||
w = new VDPMSynthesizerViewerWidget(0, "VDPMSynthesizerViewer");
|
w = new VDPMSynthesizerViewerWidget(nullptr, "VDPMSynthesizerViewer");
|
||||||
|
|
||||||
w->resize(400, 400);
|
w->resize(400, 400);
|
||||||
w->show();
|
w->show();
|
||||||
|
|||||||
Reference in New Issue
Block a user