Renamed GObject -> GObjectType

This commit is contained in:
nathan 2018-04-05 13:01:50 +02:00
parent 60e0bc87a2
commit dea819cd28
3 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@ package dorkbox.util.jna.linux;
import com.sun.jna.Pointer;
public
class GMainContext extends GObject {
class GMainContext extends GObjectType {
public
GMainContext() {
}

View File

@ -18,7 +18,7 @@ package dorkbox.util.jna.linux;
import com.sun.jna.Pointer;
public
class GMainLoop extends GObject {
class GMainLoop extends GObjectType {
public
GMainLoop() {
}

View File

@ -19,13 +19,13 @@ import com.sun.jna.Pointer;
import com.sun.jna.PointerType;
public
class GObject extends PointerType {
class GObjectType extends PointerType {
public
GObject() {
GObjectType() {
}
public
GObject(Pointer p) {
GObjectType(Pointer p) {
super(p);
}