Skip to content

Commit e2a74ac

Browse files
committed
documentation update
1 parent 847c89b commit e2a74ac

23 files changed

+43
-42
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,5 +144,5 @@ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
144144

145145
## Authors
146146

147-
Dimitar D. Mitov, 2013 - 2018
147+
Dimitar D. Mitov, 2013 - 2019
148148
Valcho Nedelchev, 2014 - 2016

src/file-reader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
but WITHOUT ANY WARRANTY;
1111
without even the implied warranty of MERCHANTABILITY or
1212
FITNESS FOR A PARTICULAR PURPOSE.
13-
Dimitar D. Mitov, 2013 - 2018
13+
Dimitar D. Mitov, 2013 - 2019
1414
Valcho Nedelchev, 2014 - 2016
1515
https://github.com/ddmitov/perl-executing-browser
1616
*/

src/file-reader.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
but WITHOUT ANY WARRANTY;
1111
without even the implied warranty of MERCHANTABILITY or
1212
FITNESS FOR A PARTICULAR PURPOSE.
13-
Dimitar D. Mitov, 2013 - 2018
13+
Dimitar D. Mitov, 2013 - 2019
1414
Valcho Nedelchev, 2014 - 2016
1515
https://github.com/ddmitov/perl-executing-browser
1616
*/
1717

18-
#ifndef FILEREADER_H
19-
#define FILEREADER_H
18+
#ifndef FILE_READER_H
19+
#define FILE_READER_H
2020

2121
#include <QObject>
2222

@@ -33,4 +33,4 @@ class QFileReader : public QObject
3333
QString fileContents;
3434
};
3535

36-
#endif // FILEREADER_H
36+
#endif // FILE_READER_H

src/main-window.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
but WITHOUT ANY WARRANTY;
1111
without even the implied warranty of MERCHANTABILITY or
1212
FITNESS FOR A PARTICULAR PURPOSE.
13-
Dimitar D. Mitov, 2013 - 2018
13+
Dimitar D. Mitov, 2013 - 2019
1414
Valcho Nedelchev, 2014 - 2016
1515
https://github.com/ddmitov/perl-executing-browser
1616
*/

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
but WITHOUT ANY WARRANTY;
1111
without even the implied warranty of MERCHANTABILITY or
1212
FITNESS FOR A PARTICULAR PURPOSE.
13-
Dimitar D. Mitov, 2013 - 2018
13+
Dimitar D. Mitov, 2013 - 2019
1414
Valcho Nedelchev, 2014 - 2016
1515
https://github.com/ddmitov/perl-executing-browser
1616
*/

src/peb.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# but WITHOUT ANY WARRANTY;
1010
# without even the implied warranty of MERCHANTABILITY or
1111
# FITNESS FOR A PARTICULAR PURPOSE.
12-
# Dimitar D. Mitov, 2013 - 2018
12+
# Dimitar D. Mitov, 2013 - 2019
1313
# Valcho Nedelchev, 2014 - 2016
1414
# https://github.com/ddmitov/perl-executing-browser
1515

src/port-scanner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
but WITHOUT ANY WARRANTY;
1111
without even the implied warranty of MERCHANTABILITY or
1212
FITNESS FOR A PARTICULAR PURPOSE.
13-
Dimitar D. Mitov, 2013 - 2018
13+
Dimitar D. Mitov, 2013 - 2019
1414
Valcho Nedelchev, 2014 - 2016
1515
https://github.com/ddmitov/perl-executing-browser
1616
*/

src/port-scanner.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
but WITHOUT ANY WARRANTY;
1111
without even the implied warranty of MERCHANTABILITY or
1212
FITNESS FOR A PARTICULAR PURPOSE.
13-
Dimitar D. Mitov, 2013 - 2018
13+
Dimitar D. Mitov, 2013 - 2019
1414
Valcho Nedelchev, 2014 - 2016
1515
https://github.com/ddmitov/perl-executing-browser
1616
*/
1717

1818
#include <QObject>
1919
#include <QTcpSocket>
2020

21-
#ifndef PORTSCANNER_H
22-
#define PORTSCANNER_H
21+
#ifndef PORT_SCANNER_H
22+
#define PORT_SCANNER_H
2323

2424
// ==============================
2525
// PORT SCANNER CLASS DEFINITION:
@@ -34,4 +34,4 @@ class QPortScanner : public QObject
3434
QString portScannerError;
3535
};
3636

37-
#endif // PORTSCANNER_H
37+
#endif // PORT_SCANNER_H

src/resources/html/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h3>About Perl Executing Browser</h3>
1515
without even the implied warranty of<br>
1616
MERCHANTABILITY or<br>
1717
FITNESS FOR A PARTICULAR PURPOSE.<br><br>
18-
Dimitar D. Mitov, 2013 - 2018<br>
18+
Dimitar D. Mitov, 2013 - 2019<br>
1919
Valcho Nedelchev, 2014 - 2016<br><br>
2020
<a href='https://github.com/ddmitov/perl-executing-browser'>
2121
github.com/ddmitov/perl-executing-browser</a><br>

src/script-handler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
but WITHOUT ANY WARRANTY;
1111
without even the implied warranty of MERCHANTABILITY or
1212
FITNESS FOR A PARTICULAR PURPOSE.
13-
Dimitar D. Mitov, 2013 - 2018
13+
Dimitar D. Mitov, 2013 - 2019
1414
Valcho Nedelchev, 2014 - 2016
1515
https://github.com/ddmitov/perl-executing-browser
1616
*/

0 commit comments

Comments
 (0)