This file is indexed.

/usr/share/SuperCollider/SCClassLibrary/QtCollider/deprecated-3.5.sc is in supercollider-common 1:3.6.3~repack-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
+ QWindow {
	
  drawHook {
    this.deprecated(thisMethod, this.class.findMethod(\drawFunc));
    ^drawFunc
  }
  drawHook_ { |aFunction|
    this.deprecated(thisMethod, this.class.findMethod(\drawFunc_));
    this.drawFunc_(aFunction)
  }

}

+ QKnob {

  *isSquare { this.deprecated(thisMethod); ^false }
  *isSquare_ { this.deprecated(thisMethod) }

  *compactRatio { this.deprecated(thisMethod); ^0.87 }
  *compactRatio_ { this.deprecated(thisMethod) }

  skin { this.deprecated( thisMethod ); ^nil }

}