Skip to content

Commit df31919

Browse files
committed
コメントを修正
1 parent 585f7c1 commit df31919

File tree

6 files changed

+6
-14
lines changed

6 files changed

+6
-14
lines changed

Classes/AppDelegate.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# AppDelegate.rb
22
# Gyaim
33
#
4-
# Created by Toshiyuki Masui on 11/03/15.
5-
# Copyright 2011 __MyCompanyName__. All rights reserved.
4+
# Created by Toshiyuki Masui on 2011/3/15.
5+
# Copyright 2011 Pitecan Systems. All rights reserved.
66

77
class AppDelegate
88
attr_accessor :candwin

Classes/CandView.rb

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
# CandView.rb
22
# Gyaim
33
#
4-
# Created by Toshiyuki Masui on 11/03/15.
4+
# Created by Toshiyuki Masui on 2011/3/15.
55
# Copyright 2011 Pitecan Systems. All rights reserved.
66

7-
require 'Log'
8-
97
class CandView < NSView
108
def drawRect(rect)
11-
Log.log "CandView drawRect"
129
mainBundle = NSBundle.mainBundle
1310
image = NSImage.alloc.initByReferencingFile(mainBundle.pathForResource("candwin",ofType:"png"))
1411
image.compositeToPoint(NSZeroPoint,operation:NSCompositeSourceOver)

Classes/CandWindow.rb

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22
# CandWindow.rb
33
# Gyaim
44
#
5-
# Created by Toshiyuki Masui on 11/03/15.
5+
# Created by Toshiyuki Masui on 2011/3/15.
66
# Copyright 2011 Pitecan Systems. All rights reserved.
77

8-
require "Log"
9-
108
class CandWindow < NSWindow
119
def initWithContentRect(contentRect,styleMask:aStyle,backing:bufferingType,defer:d)
12-
Log.log "CandWin created"
1310
# superにはキーワード引数が使えないらしく、以下のように書くことができない
1411
# super(contentRect,styleMask:NSBorderlessWindowMask,backing:NSBackingStoreBuffered,defer:false)
1512
if super(contentRect,NSBorderlessWindowMask,NSBackingStoreBuffered,false)

Classes/Log.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Log.rb
22
# Gyaim
33
#
4-
# Created by Toshiyuki Masui on 11/03/15.
4+
# Created by Toshiyuki Masui on 2011/3/15.
55
# Copyright 2011 Pitecan Systems. All rights reserved.
66

77
GYAIMLOGFILE = "/tmp/gyaim.log"

Romakana/Romakana.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Romakana.rb
33
# Gyaim
44
#
5-
# Created by Toshiyuki Masui on 11/03/15.
5+
# Created by Toshiyuki Masui on 2011/3/15.
66
# Copyright 2011 Pitecan Systems. All rights reserved.
77
#
88
# 複数のローマ字表現を考慮したローマ字かな変換ライブラリ。

WordSearch/WordSearch.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
# Copyright 2011 Pitecan Systems. All rights reserved.
77

88
class WordSearch
9-
attr :searchMode, true
10-
119
def charcode(s)
1210
sprintf("%02x",s.each_byte.to_a[0])
1311
end

0 commit comments

Comments
 (0)