~vcs-imports/mplayer/trunk

« back to all changes in this revision

Viewing changes to gui/dialog/msgbox.c

  • Committer: ib
  • Date: 2018-04-13 14:08:24 UTC
  • Revision ID: svn-v4:b3059339-0415-0410-9bf9-f77b7e298cf2:trunk:38093
Replace three dots by an ellipsis.

Since the GUI's character encoding is UTF-8, it's time
for the remnants of ASCII times to finally disappear.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
 MessageBox=gtk_window_new( GTK_WINDOW_TOPLEVEL );
56
56
 gtk_widget_set_events( MessageBox,GDK_EXPOSURE_MASK | GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK | GDK_VISIBILITY_NOTIFY_MASK );
57
 
 gtk_window_set_title( GTK_WINDOW( MessageBox ),"MPlayer ..." );
 
57
 gtk_window_set_title( GTK_WINDOW( MessageBox ),"MPlayer " ELLIPSIS );
58
58
 gtk_window_set_position( GTK_WINDOW( MessageBox ),GTK_WIN_POS_CENTER );
59
59
 gtk_window_set_modal( GTK_WINDOW( MessageBox ),TRUE );
60
60
 gtk_window_set_policy( GTK_WINDOW( MessageBox ),FALSE,FALSE,TRUE );