fix grammar error with possessive its and update sample for audio parameter

This commit is contained in:
Chris Kirmse
2019-03-14 09:26:56 -07:00
parent 3f17601db6
commit 650d3ec820
32 changed files with 49 additions and 48 deletions

View File

@@ -43,14 +43,14 @@ using namespace openshot;
QtImageReader::QtImageReader(string path) : path(path), is_open(false)
{
// Open and Close the reader, to populate it's attributes (such as height, width, etc...)
// Open and Close the reader, to populate its attributes (such as height, width, etc...)
Open();
Close();
}
QtImageReader::QtImageReader(string path, bool inspect_reader) : path(path), is_open(false)
{
// Open and Close the reader, to populate it's attributes (such as height, width, etc...)
// Open and Close the reader, to populate its attributes (such as height, width, etc...)
if (inspect_reader) {
Open();
Close();
@@ -143,7 +143,7 @@ void QtImageReader::Close()
{
// Mark as "closed"
is_open = false;
// Delete the image
image.reset();