Skip to content

Commit

Permalink
Better name
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/qterm/code/trunk/qterm-qt4@1142 bd9efd21-7b0e-0410-bb59-ddbc1b2ac886
  • Loading branch information
hephooey committed Jan 16, 2010
1 parent a48b713 commit 6ae4b87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/scripts/article.js
Expand Up @@ -88,7 +88,7 @@ Article.downloadArticle = function(message)
this.textList[this.textList.length]=QTerm.getText(i).rtrim();

// the end of article
if( QTerm.EndOfArticle() ) {
if( QTerm.endOfArticle() ) {
this.downloading = false;
this.articleText = this.textList.join("\n");
QTerm.scriptEvent.disconnect(this, this.downloadArticle);
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/ptt.js
Expand Up @@ -235,7 +235,7 @@ if (QTerm.addPopupMenu( "aboutScript", "About This Script" ) ) {
QTerm.aboutScript.triggered.connect(QTerm.onAbout);
}

QTerm.EndOfArticle = function()
QTerm.endOfArticle = function()
{
if( QTerm.getText(QTerm.rows()-1).indexOf("100%") != -1 ) {
return true;
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/smth.js
Expand Up @@ -288,7 +288,7 @@ if (QTerm.addPopupMenu( "aboutScript", "About This Script" ) ) {
QTerm.aboutScript.triggered.connect(QTerm.onAbout);
}

QTerm.EndOfArticle = function()
QTerm.endOfArticle = function()
{
if( QTerm.getText(QTerm.rows()-1).indexOf("%") == -1 ) {
return true;
Expand Down

0 comments on commit 6ae4b87

Please sign in to comment.