← Back to team overview

kicad-developers team mailing list archive

Small fixes

 

Just 2 minor changes:
- Corrected the error message about required OpenGL version for GAL.
- Fixed pcb_calculator .desktop file.

Regards,
Orson
=== modified file 'common/gal/opengl/opengl_gal.cpp'
--- common/gal/opengl/opengl_gal.cpp	2014-01-06 09:29:31 +0000
+++ common/gal/opengl/opengl_gal.cpp	2014-03-14 17:43:12 +0000
@@ -941,11 +941,11 @@
     // Check the OpenGL version (minimum 2.1 is required)
     if( GLEW_VERSION_2_1 )
     {
-        wxLogInfo( wxT( "OpenGL Version 2.1 supported." ) );
+        wxLogInfo( wxT( "OpenGL 2.1 supported." ) );
     }
     else
     {
-        DisplayError( parentWindow, wxT( "OpenGL Version 2.1 is not supported!" ) );
+        DisplayError( parentWindow, wxT( "OpenGL 2.1 or higher is required!" ) );
         exit( 1 );
     }
 

=== modified file 'resources/linux/mime/applications/pcbcalculator.desktop'
--- resources/linux/mime/applications/pcbcalculator.desktop	2013-12-24 18:46:56 +0000
+++ resources/linux/mime/applications/pcbcalculator.desktop	2014-03-14 17:40:03 +0000
@@ -2,7 +2,7 @@
 [Desktop Entry]
 Categories=Development;Electronics
 Comment=Design a printed circuit board
-Exec=pcbcalculator
+Exec=pcb_calculator
 GenericName=EDA Suite
 Icon=pcbcalculator
 MimeType=application/x-pcbcalculator-project;

Follow ups