[Bbs2ch-cvs 465] [447] [04_BRANCH] 変数名 super が予約語のため名称変更

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2008年 9月 22日 (月) 21:51:29 JST


Revision: 447
          http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=bbs2ch&view=rev&rev=447
Author:   flyson
Date:     2008-09-22 21:51:29 +0900 (Mon, 22 Sep 2008)

Log Message:
-----------
[04_BRANCH] 変数名 super が予約語のため名称変更

Modified Paths:
--------------
    branches/bbs2chreader/04_BRANCH/chrome/content/bbs2chreader/server/thread.js


-------------- next part --------------
Modified: branches/bbs2chreader/04_BRANCH/chrome/content/bbs2chreader/server/thread.js
===================================================================
--- branches/bbs2chreader/04_BRANCH/chrome/content/bbs2chreader/server/thread.js	2008-09-19 16:57:36 UTC (rev 446)
+++ branches/bbs2chreader/04_BRANCH/chrome/content/bbs2chreader/server/thread.js	2008-09-22 12:51:29 UTC (rev 447)
@@ -764,8 +764,8 @@
 	datLineParse: function(aLine, aNumber, aNew){
 		var resArray = aLine.split("<>");
 		var trueNumber = parseInt(resArray.shift());
-		var super = b2rThread2ch.prototype.datLineParse;
-		return super.apply(this, [resArray.join("<>"), trueNumber, aNew]);
+		var superClass = b2rThread2ch.prototype.datLineParse;
+		return superClass.apply(this, [resArray.join("<>"), trueNumber, aNew]);
  	},
 
 
@@ -778,8 +778,8 @@
 			if(!lastLine) lastLine = lines.pop();
 			this.dat.lineCount = parseInt(lastLine.match(/^\d+/));
 		}
-		var super = b2rThread2ch.prototype.datSave;
-		return super.apply(this, arguments);
+		var superClass = b2rThread2ch.prototype.datSave;
+		return superClass.apply(this, arguments);
 	}
 
 };


bbs2ch-cvs メーリングリストの案内
Back to archive index