summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/gtk
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-09-13 19:50:06 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-09-13 19:50:06 +0000
commit2f64d3e7e7f45a4b130c6eee098f0961a2a8a401 (patch)
treefd2728970cefdbd086febb804f9581c2731232ff /Gui/mplayer/gtk
parente68809a015b9a11575b90eb25ff7a5042aec78d4 (diff)
downloadmpv-2f64d3e7e7f45a4b130c6eee098f0961a2a8a401.tar.bz2
mpv-2f64d3e7e7f45a4b130c6eee098f0961a2a8a401.tar.xz
some temporary debug printfs
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1892 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/mplayer/gtk')
-rw-r--r--Gui/mplayer/gtk/fs.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Gui/mplayer/gtk/fs.h b/Gui/mplayer/gtk/fs.h
index e8065dda53..841eceac2d 100644
--- a/Gui/mplayer/gtk/fs.h
+++ b/Gui/mplayer/gtk/fs.h
@@ -231,6 +231,7 @@ void fs_Ok_released( GtkButton * button,gpointer user_data )
{
case 1:
fsSelectedDirectory=(unsigned char *)get_current_dir_name();
+ printf("[gtk-fs] 1-fsSelectedFile: %s\n",fsSelectedFile);
#ifdef DEBUG
dbprintf( 1,"[gtk-fs] fsSelectedFile: %s\n",fsSelectedFile );
#endif
@@ -238,6 +239,7 @@ void fs_Ok_released( GtkButton * button,gpointer user_data )
case 2:
str=gtk_entry_get_text( GTK_ENTRY( fsComboEntry2 ) );
fsSelectedFile=str;
+ printf("[gtk-fs] 2-fsSelectedFile: '%s' \n",fsSelectedFile);
#ifdef DEBUG
dbprintf( 1,"[gtk-fs] fsSelectedFile: %s\n",fsSelectedFile );
#endif
@@ -253,11 +255,14 @@ void fs_Ok_released( GtkButton * button,gpointer user_data )
break;
}
}
+ printf("[gtk-fs-xxx] fsSelectedFile: '%s' \n",fsSelectedFile);
+ printf("[gtk-fs-xxx] fsSelectedDirectory: '%s' \n",fsSelectedDirectory);
break;
}
strcpy( gtkShMem->fs.dir,fsSelectedDirectory );
-printf( "----gtk---> filname: %s\n",fsSelectedFile );
strcpy( gtkShMem->fs.filename,fsSelectedFile );
+printf( "----gtk---> directory: %s\n",fsSelectedDirectory );
+printf( "----gtk---> filename: %s\n",fsSelectedFile );
item=fsTopList_items;
while( item )
{