mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 00:56:33 +01:00
spelling error fixes (notably "overriden" => "overidden") from IOhannes m zmölnig
This commit is contained in:
parent
6048d2cd23
commit
ec06f2c49f
7 changed files with 8 additions and 8 deletions
|
|
@ -54,13 +54,13 @@ class LIBARDOUR_API ExportFormat : public ExportFormatBase, public ExportFormatB
|
||||||
bool has_sample_format ();
|
bool has_sample_format ();
|
||||||
bool sample_format_is_compatible (SampleFormat format) const;
|
bool sample_format_is_compatible (SampleFormat format) const;
|
||||||
|
|
||||||
/* If the format has a specific sample format, this function should be overriden
|
/* If the format has a specific sample format, this function should be overridden
|
||||||
* if the format has a selectable sample format, do not override this!
|
* if the format has a selectable sample format, do not override this!
|
||||||
*/
|
*/
|
||||||
|
|
||||||
virtual SampleFormat get_explicit_sample_format () const { return SF_None; }
|
virtual SampleFormat get_explicit_sample_format () const { return SF_None; }
|
||||||
|
|
||||||
/* If the above is not overriden, this one should be */
|
/* If the above is not overridden, this one should be */
|
||||||
|
|
||||||
virtual ExportFormat::SampleFormat default_sample_format () const { return SF_None; }
|
virtual ExportFormat::SampleFormat default_sample_format () const { return SF_None; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -523,7 +523,7 @@ PluginInsert::set_parameter (Evoral::Parameter param, float val)
|
||||||
if (ac) {
|
if (ac) {
|
||||||
ac->set_value(val);
|
ac->set_value(val);
|
||||||
} else {
|
} else {
|
||||||
warning << "set_parameter called for nonexistant parameter "
|
warning << "set_parameter called for nonexistent parameter "
|
||||||
<< EventTypeMap::instance().to_symbol(param) << endmsg;
|
<< EventTypeMap::instance().to_symbol(param) << endmsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ release the device.\n\
|
||||||
\n\
|
\n\
|
||||||
" ARD_PROG_NAME " by default announces itself as \"" ARD_APPL_NAME "\"\n\
|
" ARD_PROG_NAME " by default announces itself as \"" ARD_APPL_NAME "\"\n\
|
||||||
and uses the maximum possible priority for requesting the device.\n\
|
and uses the maximum possible priority for requesting the device.\n\
|
||||||
These settings can be overriden using the -n and -p options respectively.\n\
|
These settings can be overridden using the -n and -p options respectively.\n\
|
||||||
\n\
|
\n\
|
||||||
If a PID is given the tool will watch the process and if that is not running\n\
|
If a PID is given the tool will watch the process and if that is not running\n\
|
||||||
release the device and exit. Otherwise " ARD_PROG_NAME " runs until\n\
|
release the device and exit. Otherwise " ARD_PROG_NAME " runs until\n\
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ class /*LIBAUDIOGRAPHER_API*/ Sink {
|
||||||
/** Process given data
|
/** Process given data
|
||||||
* Data may be modified, so in place processing is allowed.
|
* Data may be modified, so in place processing is allowed.
|
||||||
* The default implementation calls the non-modifying version,
|
* The default implementation calls the non-modifying version,
|
||||||
* so this function does not need to be overriden.
|
* so this function does not need to be overridden.
|
||||||
* However, if the sink can do in-place processing,
|
* However, if the sink can do in-place processing,
|
||||||
* overriding this is highly recommended.
|
* overriding this is highly recommended.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -213,7 +213,7 @@ int WCMRAudioDevice::CurrentBufferSize ()
|
||||||
//
|
//
|
||||||
//! Device's block size we use for holding the audio samples.
|
//! Device's block size we use for holding the audio samples.
|
||||||
//! Usually this is equal to the buffer size, but in some cases the buffer size holds additional
|
//! Usually this is equal to the buffer size, but in some cases the buffer size holds additional
|
||||||
//! data other then the audio buffers, like frames info in SG, so it can be overriden
|
//! data other then the audio buffers, like frames info in SG, so it can be overridden
|
||||||
//!
|
//!
|
||||||
//! \param none
|
//! \param none
|
||||||
//!
|
//!
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ public:
|
||||||
|
|
||||||
/** The compute_bounding_box() method is likely to be identical
|
/** The compute_bounding_box() method is likely to be identical
|
||||||
* in all containers (the union of the children's bounding boxes).
|
* in all containers (the union of the children's bounding boxes).
|
||||||
* It can be overriden as necessary.
|
* It can be overridden as necessary.
|
||||||
*/
|
*/
|
||||||
void compute_bounding_box () const;
|
void compute_bounding_box () const;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -534,7 +534,7 @@ class DefaultCookiePolicy(CookiePolicy):
|
||||||
Both RFC 2965 and Netscape cookies are covered.
|
Both RFC 2965 and Netscape cookies are covered.
|
||||||
|
|
||||||
The easiest way to provide your own policy is to override this class and
|
The easiest way to provide your own policy is to override this class and
|
||||||
call its methods in your overriden implementations before adding your own
|
call its methods in your overridden implementations before adding your own
|
||||||
additional checks.
|
additional checks.
|
||||||
|
|
||||||
import ClientCookie
|
import ClientCookie
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue