Skip to content

Commit 752c514

Browse files
committed
documentation update
1 parent 38ac8eb commit 752c514

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ archive/
22
build-peb-*/
33
perl/bin
44
perl/lib
5+
src/tmp
56
resources/logs/
67

78
*.autosave

resources/app/index-windows.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ <h2>Perl Executing Browser</h2>
236236

237237
<div class="row">
238238
<div class="col-xs-12 introduction">
239-
<a href="https://github.com/ddmitov/perl-executing-browser">Perl Executing Browser (PEB)</a> is an HTML5 user interface for <a href="https://www.perl.org/">Perl 5</a> desktop applications. By default it runs local Perl 5 scripts as child processes with no server and is implemented as a C++ executable based on the <a href="https://www.qt.io/">Qt 5</a> libraries. Inspired by <a href="http://electron.atom.io/">Electron</a> and <a href="http://nwjs.io/">NW.js</a>, PEB is another reuse of web technologies in desktop applications with Perl doing the heavy lifting instead of <a href="https://nodejs.org/en/">Node.js</a>.
239+
Perl Executing Browser (PEB) is an HTML5 user interface for Perl 5 desktop applications. By default it runs local Perl 5 scripts as child processes with no server and is implemented as a C++ executable based on the Qt 5 libraries. Inspired by Electron and NW.js, PEB is another reuse of web technologies in desktop applications with Perl doing the heavy lifting instead of Node.js.
240240
</div>
241241
</div>
242242

resources/app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ <h2>Perl Executing Browser</h2>
228228

229229
<div class="row">
230230
<div class="col-lg-12 introduction">
231-
<a href="https://github.com/ddmitov/perl-executing-browser">Perl Executing Browser (PEB)</a> is an HTML5 user interface for <a href="https://www.perl.org/">Perl 5</a> desktop applications. By default it runs local Perl 5 scripts as child processes with no server and is implemented as a C++ executable based on the <a href="https://www.qt.io/">Qt 5</a> libraries. Inspired by <a href="http://electron.atom.io/">Electron</a> and <a href="http://nwjs.io/">NW.js</a>, PEB is another reuse of web technologies in desktop applications with Perl doing the heavy lifting instead of <a href="https://nodejs.org/en/">Node.js</a>.
231+
Perl Executing Browser (PEB) is an HTML5 user interface for Perl 5 desktop applications. By default it runs local Perl 5 scripts as child processes with no server and is implemented as a C++ executable based on the Qt 5 libraries. Inspired by Electron and NW.js, PEB is another reuse of web technologies in desktop applications with Perl doing the heavy lifting instead of Node.js.
232232
</div>
233233
</div>
234234

src/webkit-view.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ QViewWidget::QViewWidget()
3838
QObject::connect(printShortcut, SIGNAL(activated()),
3939
this, SLOT(qPrintSlot()));
4040

41-
QShortcut *printPreviewShortcut = new QShortcut(QKeySequence("Ctrl+R"), this);
41+
QShortcut *printPreviewShortcut =
42+
new QShortcut(QKeySequence("Ctrl+R"), this);
4243
QObject::connect(printPreviewShortcut, SIGNAL(activated()),
4344
this, SLOT(qStartPrintPreviewSlot()));
4445
#endif

0 commit comments

Comments
 (0)