repo.or.cz
/
supercollider.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
scide: LookupDialog - redo lookup on classes after partial lookup
[supercollider.git]
/
SCClassLibrary
/
deprecated
/
deprecated-3.6.sc
blob
6d3f815c4fcbbb76fc87a24a968eab8cc9ffd93a
1
+ MIDIIn {
2
*new { arg port;
3
DeprecatedError(this, thisMethod).throw;
4
^super.new.port_(port)
5
}
6
port {
7
DeprecatedError(this, thisMethod).throw;
8
^port
9
}
10
port_ { |newPort|
11
DeprecatedError(this, thisMethod).throw;
12
port = newPort;
13
}
14
}