fix various typos throughout codebase
Found via `codespell -q 3 -S "*.pdf,*.po,./.git,*.tosc,./waf,./share/patchfiles,./libs,./msvc_extra_headers,./share/web_surfaces,*.patch" -L acount,addin,ane,ba,buss,busses,caf,capela,devine,disconnectin,discreet,doubleclick,envolution,filetest,fo,ghandi,homs,hsi,layed,maschine,mis,nd,ontop,pass-thru,removeable,retrn,ro,scrollin,sectionin,seh,siz,sord,sur,te,trough,ue,wth`
This commit is contained in:
@@ -311,7 +311,7 @@ ExportHandler::handle_duplicate_format_extensions()
|
|||||||
/* stem-export has multiple files in the same timestamp, but a different channel_config for each.
|
/* stem-export has multiple files in the same timestamp, but a different channel_config for each.
|
||||||
* However channel_config is only set in ExportGraphBuilder::Encoder::init_writer()
|
* However channel_config is only set in ExportGraphBuilder::Encoder::init_writer()
|
||||||
* so we cannot yet use it->second.filename->get_path(it->second.format).
|
* so we cannot yet use it->second.filename->get_path(it->second.format).
|
||||||
* We have to explicily check uniqueness of "channel-config + extension" here:
|
* We have to explicitly check uniqueness of "channel-config + extension" here:
|
||||||
*/
|
*/
|
||||||
counts[pfx + it->second.channel_config->name() + it->second.format->extension()]++;
|
counts[pfx + it->second.channel_config->name() + it->second.format->extension()]++;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -204,7 +204,7 @@ luabridge::getIdentityKey ()
|
|||||||
/* ...and this is the ugly part of it.
|
/* ...and this is the ugly part of it.
|
||||||
*
|
*
|
||||||
* We need to forward declare classes from gtk2_ardour
|
* We need to forward declare classes from gtk2_ardour
|
||||||
* AND explicily list classes which are used by gtk2_ardour's bindings.
|
* AND explicitly list classes which are used by gtk2_ardour's bindings.
|
||||||
*
|
*
|
||||||
* This is required because some of the GUI classes use objects from libardour
|
* This is required because some of the GUI classes use objects from libardour
|
||||||
* as function parameters or return values and the .exe would re-create
|
* as function parameters or return values and the .exe would re-create
|
||||||
|
|||||||
@@ -849,7 +849,7 @@ gtk_menu_item_select (GtkMenuItem *menu_item)
|
|||||||
|
|
||||||
gtk_item_select (GTK_ITEM (menu_item));
|
gtk_item_select (GTK_ITEM (menu_item));
|
||||||
|
|
||||||
/* Enable themeing of the parent menu item depending on whether
|
/* Enable theming of the parent menu item depending on whether
|
||||||
* something is selected in its submenu
|
* something is selected in its submenu
|
||||||
*/
|
*/
|
||||||
if (GTK_IS_MENU (GTK_WIDGET (menu_item)->parent))
|
if (GTK_IS_MENU (GTK_WIDGET (menu_item)->parent))
|
||||||
@@ -868,7 +868,7 @@ gtk_menu_item_deselect (GtkMenuItem *menu_item)
|
|||||||
|
|
||||||
gtk_item_deselect (GTK_ITEM (menu_item));
|
gtk_item_deselect (GTK_ITEM (menu_item));
|
||||||
|
|
||||||
/* Enable themeing of the parent menu item depending on whether
|
/* Enable theming of the parent menu item depending on whether
|
||||||
* something is selected in its submenu
|
* something is selected in its submenu
|
||||||
*/
|
*/
|
||||||
if (GTK_IS_MENU (GTK_WIDGET (menu_item)->parent))
|
if (GTK_IS_MENU (GTK_WIDGET (menu_item)->parent))
|
||||||
@@ -1541,7 +1541,7 @@ gtk_menu_item_real_popup_submenu (GtkWidget *widget,
|
|||||||
0);
|
0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Enable themeing of the parent menu item depending on whether
|
/* Enable theming of the parent menu item depending on whether
|
||||||
* its submenu is shown or not.
|
* its submenu is shown or not.
|
||||||
*/
|
*/
|
||||||
gtk_widget_queue_draw (widget);
|
gtk_widget_queue_draw (widget);
|
||||||
|
|||||||
@@ -833,7 +833,7 @@ gtk_tree_view_class_init (GtkTreeViewClass *class)
|
|||||||
/**
|
/**
|
||||||
* GtkTreeView:row-ending-details:
|
* GtkTreeView:row-ending-details:
|
||||||
*
|
*
|
||||||
* Enable extended row background themeing
|
* Enable extended row background theming
|
||||||
*
|
*
|
||||||
* Deprecated: 2.22: This style property will be removed in GTK+ 3
|
* Deprecated: 2.22: This style property will be removed in GTK+ 3
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ This is a simple tool to test a system for g++5's glibmm at runtime.
|
|||||||
|
|
||||||
GCC5.1 introduced a new ABI for the C++ standard library.
|
GCC5.1 introduced a new ABI for the C++ standard library.
|
||||||
The old 3.4 .. 5.0 ABI is not compatible. By default gcc provides a
|
The old 3.4 .. 5.0 ABI is not compatible. By default gcc provides a
|
||||||
dual ABI, so testing libstc++ itself is not sufficient.
|
dual ABI, so testing libstdc++ itself is not sufficient.
|
||||||
|
|
||||||
|
|
||||||
Some GNU/Linux distributions systems switched to the new ABI already
|
Some GNU/Linux distributions systems switched to the new ABI already
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ done
|
|||||||
if [ -d $dir -a -f $dir/testfile_1 ] ; then
|
if [ -d $dir -a -f $dir/testfile_1 ] ; then
|
||||||
# dir exists and has a testfile within it - reuse to avoid
|
# dir exists and has a testfile within it - reuse to avoid
|
||||||
# recreating files
|
# recreating files
|
||||||
echo "# Re-using files in $dir"
|
echo "# Reusing files in $dir"
|
||||||
needfiles=
|
needfiles=
|
||||||
else
|
else
|
||||||
dir=$dir/readtest_$$
|
dir=$dir/readtest_$$
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ done
|
|||||||
if [ -d $dir -a -f $dir/testfile_1 ] ; then
|
if [ -d $dir -a -f $dir/testfile_1 ] ; then
|
||||||
# dir exists and has a testfile within it - reuse to avoid
|
# dir exists and has a testfile within it - reuse to avoid
|
||||||
# recreating files
|
# recreating files
|
||||||
echo "# Re-using files in $dir"
|
echo "# Reusing files in $dir"
|
||||||
needfiles=
|
needfiles=
|
||||||
else
|
else
|
||||||
dir=$dir/readtest_$$
|
dir=$dir/readtest_$$
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ ParseSwitches(
|
|||||||
if (++i < argc) {
|
if (++i < argc) {
|
||||||
string op = argv[i];
|
string op = argv[i];
|
||||||
if (op[0] == '-') {
|
if (op[0] == '-') {
|
||||||
// reqiured option for this switch is missing
|
// required option for this switch is missing
|
||||||
--i;
|
--i;
|
||||||
OK = false;
|
OK = false;
|
||||||
break;
|
break;
|
||||||
@@ -240,7 +240,7 @@ ParseSwitches(
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// reqiured option for this switch is missing
|
// required option for this switch is missing
|
||||||
--i;
|
--i;
|
||||||
OK = false;
|
OK = false;
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -247,7 +247,7 @@ cp gtk2_ardour/icons/ArdourBug.ico $DESTDIR/share/
|
|||||||
# replace default cursor with square version (sans hotspot file)
|
# replace default cursor with square version (sans hotspot file)
|
||||||
cp gtk2_ardour/icons/cursor_square/* $DESTDIR/share/${LOWERCASE_DIRNAME}/icons/
|
cp gtk2_ardour/icons/cursor_square/* $DESTDIR/share/${LOWERCASE_DIRNAME}/icons/
|
||||||
|
|
||||||
# clean build-dir after depoyment
|
# clean build-dir after deployment
|
||||||
echo " === bundle completed, cleaning up"
|
echo " === bundle completed, cleaning up"
|
||||||
./waf uninstall
|
./waf uninstall
|
||||||
find $DESTDIR -name "*.dll.a" -print0 | xargs -0 -r rm
|
find $DESTDIR -name "*.dll.a" -print0 | xargs -0 -r rm
|
||||||
|
|||||||
2
wscript
2
wscript
@@ -1508,7 +1508,7 @@ const char* const ardour_config_info = "\\n\\
|
|||||||
write_config_text('Futex Semaphore', conf.is_defined('USE_FUTEX_SEMAPHORE'))
|
write_config_text('Futex Semaphore', conf.is_defined('USE_FUTEX_SEMAPHORE'))
|
||||||
write_config_text('Freedesktop files', opts.freedesktop)
|
write_config_text('Freedesktop files', opts.freedesktop)
|
||||||
write_config_text('G_ENABLE_DEBUG', opts.gdebug or conf.env['DEBUG'])
|
write_config_text('G_ENABLE_DEBUG', opts.gdebug or conf.env['DEBUG'])
|
||||||
write_config_text('I/O Priorty Set', conf.is_defined('HAVE_IOPRIO'))
|
write_config_text('I/O Priority Set', conf.is_defined('HAVE_IOPRIO'))
|
||||||
write_config_text('Libjack linking', conf.env['libjack_link'])
|
write_config_text('Libjack linking', conf.env['libjack_link'])
|
||||||
write_config_text('Libjack metadata', conf.is_defined ('HAVE_JACK_METADATA'))
|
write_config_text('Libjack metadata', conf.is_defined ('HAVE_JACK_METADATA'))
|
||||||
write_config_text('Lua Binding Doc', conf.is_defined('LUABINDINGDOC'))
|
write_config_text('Lua Binding Doc', conf.is_defined('LUABINDINGDOC'))
|
||||||
|
|||||||
Reference in New Issue
Block a user