Skip to content

Commit

Permalink
Don't use hard coded GTK version in message boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
Onkar Shinde committed Mar 19, 2010
1 parent 75489a8 commit dcba233
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2010-03-19 Onkar Shinde <onkarshinde@gmail.com>

* installer.nsi.in: Don't use hard coded GTK version in message boxes.

2010-03-12 Onkar Shinde <onkarshinde@gmail.com>

* installer.nsi.in: Use the MUI method for setting icon for installer.
Expand Down
4 changes: 2 additions & 2 deletions installer.nsi.in
Expand Up @@ -188,13 +188,13 @@ Function AskForGtk
no_gtk:
!ifdef INC_GTK
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
"GTK2 Runtime (>= 2.12) is not installed. GNUSIM8085 needs it to function properly.$\n$\n\
"GTK2 Runtime (>= ${GTK_VERSION_REQ}) is not installed. GNUSIM8085 needs it to function properly.$\n$\n\
Click 'Cancel' to modify selection or 'OK' to continue anyway." \
/SD IDOK IDOK have_gtk
Abort
!else
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
"GTK2 Runtime (>= 2.12) is not installed. GNUSIM8085 needs it to function properly.$\n\
"GTK2 Runtime (>= ${GTK_VERSION_REQ}) is not installed. GNUSIM8085 needs it to function properly.$\n\
Please install GTK2-Runtime from http://gtk-win.sf.net/ first.$\n$\n\
Click 'Cancel' to abort installation or 'OK' to continue anyway." \
/SD IDOK IDOK have_gtk
Expand Down

0 comments on commit dcba233

Please sign in to comment.