Skip to content

Commit ea3090c

Browse files
committed
Renamed GObject to GeometryObject as it conflicts with GTKs GObject
1 parent 40d54d5 commit ea3090c

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

src/Geometry/GAngle.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Internal Representation and Key Implementation Points.
4646
"
4747
Class {
4848
#name : #GAngle,
49-
#superclass : #GObject,
49+
#superclass : #GeometryObject,
5050
#instVars : [
5151
'radians'
5252
],

src/Geometry/GCoordinates.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Internal Representation and Key Implementation Points.
3434
"
3535
Class {
3636
#name : #GCoordinates,
37-
#superclass : #GObject,
37+
#superclass : #GeometryObject,
3838
#instVars : [
3939
'coordinates'
4040
],

src/Geometry/GElement.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Public API and Key Messages
1717
"
1818
Class {
1919
#name : #GElement,
20-
#superclass : #GObject,
20+
#superclass : #GeometryObject,
2121
#category : #'Geometry-Elements'
2222
}
2323

src/Geometry/GMatrix.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Internal Representation and Key Implementation Points.
1616
"
1717
Class {
1818
#name : #GMatrix,
19-
#superclass : #GObject,
19+
#superclass : #GeometryObject,
2020
#instVars : [
2121
'rows'
2222
],

src/Geometry/GVector.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Internal Representation and Key Implementation Points.
3030
"
3131
Class {
3232
#name : #GVector,
33-
#superclass : #GObject,
33+
#superclass : #GeometryObject,
3434
#traits : 'TGWithCoordinates',
3535
#classTraits : 'TGWithCoordinates classTrait',
3636
#instVars : [

src/Geometry/GObject.class.st renamed to src/Geometry/GeometryObject.class.st

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@ Description
55
I am a common superclass for all Geometry object. Concrete (points, segments, polygons...) and abstract objects (coordinates, vectors, ...).
66
"
77
Class {
8-
#name : #GObject,
8+
#name : #GeometryObject,
99
#superclass : #Object,
1010
#category : #'Geometry-Elements'
1111
}
1212

1313
{ #category : #'error handling' }
14-
GObject class >> error [
14+
GeometryObject class >> error [
1515
GError signal
1616
]
1717

1818
{ #category : #'error handling' }
19-
GObject class >> error: aString [
19+
GeometryObject class >> error: aString [
2020
GError signal: aString
2121
]
2222

2323
{ #category : #'error handling' }
24-
GObject >> error [
24+
GeometryObject >> error [
2525
^ self class error
2626
]
2727

2828
{ #category : #'error handling' }
29-
GObject >> error: aString [
29+
GeometryObject >> error: aString [
3030
^ self class error: aString
3131
]

0 commit comments

Comments
 (0)