Skip to content

Commit

Permalink
Missed some cases in the previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeWey committed Jun 19, 2013
1 parent ab66408 commit 7e95380
Show file tree
Hide file tree
Showing 46 changed files with 70 additions and 70 deletions.
2 changes: 1 addition & 1 deletion src/gio/ActionMapT.d
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public template ActionMapT(TStruct)
return null;
}

return ObjectG.getDObject!(Action)(cast(GAction*) p);
return ObjectG.getDObject!(Action, ActionIF)(cast(GAction*) p);
}

/**
Expand Down
10 changes: 5 additions & 5 deletions src/gio/AppInfoT.d
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public template AppInfoT(TStruct)
return null;
}

return ObjectG.getDObject!(AppInfo)(cast(GAppInfo*) p);
return ObjectG.getDObject!(AppInfo, AppInfoIF)(cast(GAppInfo*) p);
}

/**
Expand All @@ -263,7 +263,7 @@ public template AppInfoT(TStruct)
return null;
}

return ObjectG.getDObject!(AppInfo)(cast(GAppInfo*) p);
return ObjectG.getDObject!(AppInfo, AppInfoIF)(cast(GAppInfo*) p);
}

/**
Expand Down Expand Up @@ -361,7 +361,7 @@ public template AppInfoT(TStruct)
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand Down Expand Up @@ -717,7 +717,7 @@ public template AppInfoT(TStruct)
return null;
}

return ObjectG.getDObject!(AppInfo)(cast(GAppInfo*) p);
return ObjectG.getDObject!(AppInfo, AppInfoIF)(cast(GAppInfo*) p);
}

/**
Expand All @@ -739,7 +739,7 @@ public template AppInfoT(TStruct)
return null;
}

return ObjectG.getDObject!(AppInfo)(cast(GAppInfo*) p);
return ObjectG.getDObject!(AppInfo, AppInfoIF)(cast(GAppInfo*) p);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/gio/ContentType.d
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public class ContentType
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand All @@ -188,7 +188,7 @@ public class ContentType
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/ConverterInputStream.d
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,6 @@ public class ConverterInputStream : FilterInputStream
return null;
}

return ObjectG.getDObject!(Converter)(cast(GConverter*) p);
return ObjectG.getDObject!(Converter, ConverterIF)(cast(GConverter*) p);
}
}
2 changes: 1 addition & 1 deletion src/gio/ConverterOutputStream.d
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,6 @@ public class ConverterOutputStream : FilterOutputStream
return null;
}

return ObjectG.getDObject!(Converter)(cast(GConverter*) p);
return ObjectG.getDObject!(Converter, ConverterIF)(cast(GConverter*) p);
}
}
4 changes: 2 additions & 2 deletions src/gio/DBusInterfaceT.d
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public template DBusInterfaceT(TStruct)
return null;
}

return ObjectG.getDObject!(DBusObject)(cast(GDBusObject*) p);
return ObjectG.getDObject!(DBusObject, DBusObjectIF)(cast(GDBusObject*) p);
}

/**
Expand All @@ -149,7 +149,7 @@ public template DBusInterfaceT(TStruct)
return null;
}

return ObjectG.getDObject!(DBusObject)(cast(GDBusObject*) p);
return ObjectG.getDObject!(DBusObject, DBusObjectIF)(cast(GDBusObject*) p);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/gio/DBusObjectManagerT.d
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ public template DBusObjectManagerT(TStruct)
return null;
}

return ObjectG.getDObject!(DBusObject)(cast(GDBusObject*) p);
return ObjectG.getDObject!(DBusObject, DBusObjectIF)(cast(GDBusObject*) p);
}

/**
Expand Down Expand Up @@ -318,6 +318,6 @@ public template DBusObjectManagerT(TStruct)
return null;
}

return ObjectG.getDObject!(DBusInterface)(cast(GDBusInterface*) p);
return ObjectG.getDObject!(DBusInterface, DBusInterfaceIF)(cast(GDBusInterface*) p);
}
}
2 changes: 1 addition & 1 deletion src/gio/DBusObjectT.d
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,6 @@ public template DBusObjectT(TStruct)
return null;
}

return ObjectG.getDObject!(DBusInterface)(cast(GDBusInterface*) p);
return ObjectG.getDObject!(DBusInterface, DBusInterfaceIF)(cast(GDBusInterface*) p);
}
}
4 changes: 2 additions & 2 deletions src/gio/DriveT.d
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public template DriveT(TStruct)
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand All @@ -308,7 +308,7 @@ public template DriveT(TStruct)
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/Emblem.d
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public class Emblem : ObjectG, IconIF
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/EmblemedIcon.d
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public class EmblemedIcon : ObjectG, IconIF
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand Down
6 changes: 3 additions & 3 deletions src/gio/File.d
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ public class File : ObjectG
return null;
}

return ObjectG.getDObject!(AppInfo)(cast(GAppInfo*) p);
return ObjectG.getDObject!(AppInfo, AppInfoIF)(cast(GAppInfo*) p);
}

/**
Expand Down Expand Up @@ -1373,7 +1373,7 @@ public class File : ObjectG
return null;
}

return ObjectG.getDObject!(Mount)(cast(GMount*) p);
return ObjectG.getDObject!(Mount, MountIF)(cast(GMount*) p);
}

/**
Expand Down Expand Up @@ -1424,7 +1424,7 @@ public class File : ObjectG
return null;
}

return ObjectG.getDObject!(Mount)(cast(GMount*) p);
return ObjectG.getDObject!(Mount, MountIF)(cast(GMount*) p);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/gio/FileInfo.d
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ public class FileInfo : ObjectG
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand All @@ -681,7 +681,7 @@ public class FileInfo : ObjectG
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand Down
8 changes: 4 additions & 4 deletions src/gio/MountT.d
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public template MountT(TStruct)
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand All @@ -294,7 +294,7 @@ public template MountT(TStruct)
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand All @@ -313,7 +313,7 @@ public template MountT(TStruct)
return null;
}

return ObjectG.getDObject!(Drive)(cast(GDrive*) p);
return ObjectG.getDObject!(Drive, DriveIF)(cast(GDrive*) p);
}

/**
Expand Down Expand Up @@ -347,7 +347,7 @@ public template MountT(TStruct)
return null;
}

return ObjectG.getDObject!(Volume)(cast(GVolume*) p);
return ObjectG.getDObject!(Volume, VolumeIF)(cast(GVolume*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/NetworkAddress.d
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,6 @@ public class NetworkAddress : ObjectG, SocketConnectableIF
return null;
}

return ObjectG.getDObject!(SocketConnectable)(cast(GSocketConnectable*) p);
return ObjectG.getDObject!(SocketConnectable, SocketConnectableIF)(cast(GSocketConnectable*) p);
}
}
2 changes: 1 addition & 1 deletion src/gio/NetworkMonitorT.d
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public template NetworkMonitorT(TStruct)
return null;
}

return ObjectG.getDObject!(NetworkMonitor)(cast(GNetworkMonitor*) p);
return ObjectG.getDObject!(NetworkMonitor, NetworkMonitorIF)(cast(GNetworkMonitor*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/ProxyResolverT.d
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public template ProxyResolverT(TStruct)
return null;
}

return ObjectG.getDObject!(ProxyResolver)(cast(GProxyResolver*) p);
return ObjectG.getDObject!(ProxyResolver, ProxyResolverIF)(cast(GProxyResolver*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/ProxyT.d
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public template ProxyT(TStruct)
return null;
}

return ObjectG.getDObject!(Proxy)(cast(GProxy*) p);
return ObjectG.getDObject!(Proxy, ProxyIF)(cast(GProxy*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/Settings.d
Original file line number Diff line number Diff line change
Expand Up @@ -1290,6 +1290,6 @@ public class Settings : ObjectG
return null;
}

return ObjectG.getDObject!(Action)(cast(GAction*) p);
return ObjectG.getDObject!(Action, ActionIF)(cast(GAction*) p);
}
}
2 changes: 1 addition & 1 deletion src/gio/SimpleActionGroup.d
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public class SimpleActionGroup : ObjectG, ActionGroupIF, ActionMapIF
return null;
}

return ObjectG.getDObject!(Action)(cast(GAction*) p);
return ObjectG.getDObject!(Action, ActionIF)(cast(GAction*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/SocketClient.d
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ public class SocketClient : ObjectG
return null;
}

return ObjectG.getDObject!(ProxyResolver)(cast(GProxyResolver*) p);
return ObjectG.getDObject!(ProxyResolver, ProxyResolverIF)(cast(GProxyResolver*) p);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/gio/TlsClientConnection.d
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public class TlsClientConnection : TlsConnection
return null;
}

return ObjectG.getDObject!(SocketConnectable)(cast(GSocketConnectable*) p);
return ObjectG.getDObject!(SocketConnectable, SocketConnectableIF)(cast(GSocketConnectable*) p);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/gio/UnixMountEntry.d
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public class UnixMountEntry
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand All @@ -220,7 +220,7 @@ public class UnixMountEntry
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/gio/UnixMountPoint.d
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public class UnixMountPoint
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand All @@ -235,7 +235,7 @@ public class UnixMountPoint
return null;
}

return ObjectG.getDObject!(Icon)(cast(GIcon*) p);
return ObjectG.getDObject!(Icon, IconIF)(cast(GIcon*) p);
}

/**
Expand Down
6 changes: 3 additions & 3 deletions src/gio/VolumeMonitor.d
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ public class VolumeMonitor : ObjectG
return null;
}

return ObjectG.getDObject!(Volume)(cast(GVolume*) p);
return ObjectG.getDObject!(Volume, VolumeIF)(cast(GVolume*) p);
}

/**
Expand All @@ -598,7 +598,7 @@ public class VolumeMonitor : ObjectG
return null;
}

return ObjectG.getDObject!(Mount)(cast(GMount*) p);
return ObjectG.getDObject!(Mount, MountIF)(cast(GMount*) p);
}

/**
Expand All @@ -617,6 +617,6 @@ public class VolumeMonitor : ObjectG
return null;
}

return ObjectG.getDObject!(Volume)(cast(GVolume*) p);
return ObjectG.getDObject!(Volume, VolumeIF)(cast(GVolume*) p);
}
}
Loading

0 comments on commit 7e95380

Please sign in to comment.