summaryrefslogtreecommitdiff
path: root/src/trg-torrent-add-dialog.h
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-08-27 17:15:31 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-08-27 17:15:31 +0000
commitbd758ee4fc423b9ca152a01f897609daa656c938 (patch)
tree0378306b5b007f38f0c4f6c0d868215f70fd70d6 /src/trg-torrent-add-dialog.h
parentb8a1599a2ab9eafd496ba23179dda97d6e83e917 (diff)
Profile support! Please test and report bugs, as the config system is totally rewritten and may not be perfect. No more GConf (trying to implement profiles with this was UGLY), settings now (for most) live in JSON at $HOME/.config/transmission-remote-gtk/config.json. Hopefully windows support will be easier without GConf.
Diffstat (limited to 'src/trg-torrent-add-dialog.h')
-rw-r--r--src/trg-torrent-add-dialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/trg-torrent-add-dialog.h b/src/trg-torrent-add-dialog.h
index a64379d..88ed9ab 100644
--- a/src/trg-torrent-add-dialog.h
+++ b/src/trg-torrent-add-dialog.h
@@ -53,7 +53,7 @@ typedef struct {
struct add_torrent_threadfunc_args {
GSList *list;
- trg_client *client;
+ TrgClient *client;
gpointer cb_data;
gboolean paused;
gchar *dir;
@@ -64,9 +64,9 @@ struct add_torrent_threadfunc_args {
GType trg_torrent_add_dialog_get_type(void);
TrgTorrentAddDialog *trg_torrent_add_dialog_new(TrgMainWindow * win,
- trg_client * client,
+ TrgClient * client,
GSList * filenames);
-void trg_torrent_add_dialog(TrgMainWindow * win, trg_client * client);
+void trg_torrent_add_dialog(TrgMainWindow * win, TrgClient * client);
void launch_add_thread(struct add_torrent_threadfunc_args *args);
G_END_DECLS