Skip to content

Commit fc1ff82

Browse files
author
Clement Champetier
committed
Description: correct Licence to License
1 parent 6eb8a95 commit fc1ff82

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

app/avInfo/avInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ int main( int argc, char** argv )
1313
std::cout << std::left;
1414
std::cout << std::setw( 15 ) << (*library).getName();
1515
std::cout << std::setw( 10 ) << (*library).getStringVersion();
16-
std::cout << std::setw( 30 ) << (*library).getLicence();
16+
std::cout << std::setw( 30 ) << (*library).getLicense();
1717
std::cout << std::endl;
1818
}
1919

src/AvTranscoder/Description.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ extern "C" {
2222
namespace avtranscoder
2323
{
2424

25-
Library::Library( const std::string& name, const std::string& licence, const size_t major, const size_t minor, const size_t release )
25+
Library::Library( const std::string& name, const std::string& license, const size_t major, const size_t minor, const size_t release )
2626
: _name( name )
27-
, _licence( licence )
27+
, _licence( license )
2828
, _major( major )
2929
, _minor( minor )
3030
, _release( release )
@@ -69,7 +69,7 @@ size_t Library::getReleaseVersion()
6969
return _release;
7070
}
7171

72-
std::string Library::getLicence()
72+
std::string Library::getLicense()
7373
{
7474
return _licence;
7575
}

src/AvTranscoder/Description.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace avtranscoder
1212
class Library
1313
{
1414
public:
15-
Library( const std::string& name, const std::string& licence, const size_t major, const size_t minor, const size_t release );
15+
Library( const std::string& name, const std::string& license, const size_t major, const size_t minor, const size_t release );
1616

1717
std::string getName();
1818

@@ -22,7 +22,7 @@ class Library
2222
size_t getMinorVersion();
2323
size_t getReleaseVersion();
2424

25-
std::string getLicence();
25+
std::string getLicense();
2626
private:
2727
std::string _name;
2828
std::string _licence;

0 commit comments

Comments
 (0)