COPYING README msg.txt ffmpeg doc models
cd bin/locale; $(inst_sh) "$(DESTDIR)$(localedir)" .
cd bin/plugins; $(inst_sh) "$(DESTDIR)$(WANT_PLUGIN_DIR)" .
- if test "x$(WANT_LADSPA_BUILD)" = "xyes"; then \
- cd bin/ladspa; $(inst_sh) "$(DESTDIR)$(WANT_LADSPA_DIR)" . ; \
- fi
+ cd bin/ladspa; $(inst_sh) "$(DESTDIR)$(WANT_LADSPA_DIR)" .
cd bin/applications; $(inst_sh) "$(DESTDIR)$(datadir)/applications" .
cd bin/pixmaps; $(inst_sh) "$(DESTDIR)$(datadir)/pixmaps" .
int BC_MenuBar::focus_out_event()
{
- for(int i = 0; i < menu_titles.total; i++) {
- if( menu_titles.values[i]->active )
- return 0;
- }
deactivate();
return 0;
}
int BC_MenuBar::cursor_leave_event()
{
- for(int i = 0; i < menu_titles.total; i++)
- {
+ for(int i = 0; i < menu_titles.total; i++) {
menu_titles.values[i]->dispatch_cursor_leave();
}
+ for(int i = 0; i < menu_titles.total; i++) {
+ if( menu_titles.values[i]->active )
+ return 0;
+ }
+ deactivate();
return 0;
}
#!/bin/bash -e
# inst.sh <dir> <objs...>
-
+cr='
+'
dir="$1"; shift 1
$mkinstalldirs "$dir"
for f in "$@"; do
if [ -f "$f" ]; then $install_sh -c "$f" "$dir"; continue; fi
- if [ -d "$f" ]; then ( cd $f; $inst_sh "$dir/$f" * )
+ if [ -d "$f" ]; then ( cd $f; IFS="$cr"; $inst_sh "$dir/$f" `ls -1` )
else echo "*** Error - install $f in $dir failed." 1>&2; exit 1; fi
done