Skip to content

Commit

Permalink
Upversion to 3.2.2
Browse files Browse the repository at this point in the history
Minor localisation fix for Windows

Signed-off-by: Martin <[email protected]>
  • Loading branch information
Ho-Ro committed Apr 18, 2021
1 parent 5f3bfcc commit dcac3f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openhantek/src/OH_BUILD.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Do not edit, will be re-created at each commit!
#define OH_BUILD "20210418 - commit 890"
#define OH_BUILD "20210418 - commit 891"
4 changes: 3 additions & 1 deletion openhantek/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ using namespace Hantek;

/// \brief Initialize resources and translations and show the main window.
int main( int argc, char *argv[] ) {
unsetenv( "LANGUAGE" ); // this ENV variable hides the LANG=xx setting
#ifndef Q_OS_WIN
unsetenv( "LANGUAGE" ); // this ENV variable hides the LANG=xx setting, not available under Windows
#endif
//////// Set application information ////////
QCoreApplication::setOrganizationName( "OpenHantek" );
QCoreApplication::setOrganizationDomain( "openhantek.org" );
Expand Down

0 comments on commit dcac3f7

Please sign in to comment.