[Cxplorer-cvs 00977] CVS update: cxplorer/src

Back to archive index

Yasumichi Akahoshi yasum****@users*****
2005年 4月 8日 (金) 01:53:10 JST


Index: cxplorer/src/cxp-dir-view.c
diff -u cxplorer/src/cxp-dir-view.c:1.9 cxplorer/src/cxp-dir-view.c:1.10
--- cxplorer/src/cxp-dir-view.c:1.9	Fri Apr  8 01:15:26 2005
+++ cxplorer/src/cxp-dir-view.c	Fri Apr  8 01:53:09 2005
@@ -17,13 +17,13 @@
 	NUM_COLS		/**< Count of columns */
 };
 
-struct _CxpDirViewPrivate
+typedef struct
 {
 	GtkWidget *dirview;
 	GdkPixbuf *icon;
 	gboolean showDotFile;
 	gboolean dispose_has_run;
-};
+} CxpDirViewPrivate;
 
 #define CXP_DIR_VIEW_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), CXP_TYPE_DIR_VIEW, CxpDirViewPrivate))
 
Index: cxplorer/src/cxp-dir-view.h
diff -u cxplorer/src/cxp-dir-view.h:1.7 cxplorer/src/cxp-dir-view.h:1.8
--- cxplorer/src/cxp-dir-view.h:1.7	Fri Apr  1 22:20:05 2005
+++ cxplorer/src/cxp-dir-view.h	Fri Apr  8 01:53:09 2005
@@ -17,12 +17,10 @@
 
 typedef struct _CxpDirView CxpDirView;
 typedef struct _CxpDirViewClass CxpDirViewClass;
-typedef struct _CxpDirViewPrivate CxpDirViewPrivate;
 
 struct _CxpDirView
 {
 	GtkScrolledWindow parent;
-	CxpDirViewPrivate *priv;
 };
 
 struct _CxpDirViewClass
Index: cxplorer/src/cxp-right-pane.c
diff -u cxplorer/src/cxp-right-pane.c:1.23 cxplorer/src/cxp-right-pane.c:1.24
--- cxplorer/src/cxp-right-pane.c:1.23	Fri Apr  8 00:20:37 2005
+++ cxplorer/src/cxp-right-pane.c	Fri Apr  8 01:53:09 2005
@@ -19,7 +19,7 @@
  * definition for this private structure.
  */
 
-struct _CxpRightPanePrivate
+typedef struct
 {
 	GtkWidget *file_list;
 	GtkWidget *preview;
@@ -30,7 +30,7 @@
 	gchar *preview_text;
 	gchar *preview_binary;
 	CxpHandler *handler;
-};
+} CxpRightPanePrivate;
 
 #define CXP_RIGHT_PANE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), CXP_TYPE_RIGHT_PANE, CxpRightPanePrivate))
 
Index: cxplorer/src/cxp-right-pane.h
diff -u cxplorer/src/cxp-right-pane.h:1.9 cxplorer/src/cxp-right-pane.h:1.10
--- cxplorer/src/cxp-right-pane.h:1.9	Fri Apr  1 22:20:05 2005
+++ cxplorer/src/cxp-right-pane.h	Fri Apr  8 01:53:09 2005
@@ -36,13 +36,10 @@
 
 typedef struct _CxpRightPane CxpRightPane;
 typedef struct _CxpRightPaneClass CxpRightPaneClass;
-typedef struct _CxpRightPanePrivate CxpRightPanePrivate;
 
 struct _CxpRightPane
 {
 	GtkVPaned parent;
-	/* instance members */
-	CxpRightPanePrivate *priv;
 };
 
 struct _CxpRightPaneClass
Index: cxplorer/src/cxplorer-window.c
diff -u cxplorer/src/cxplorer-window.c:1.2 cxplorer/src/cxplorer-window.c:1.3
--- cxplorer/src/cxplorer-window.c:1.2	Fri Apr  8 01:35:51 2005
+++ cxplorer/src/cxplorer-window.c	Fri Apr  8 01:53:09 2005
@@ -35,7 +35,7 @@
  * definition for this private structure.
  */
 
-struct _CxplorerWindowPrivate
+typedef struct
 {
 	GtkWidget *entry;
 	GtkWidget *dirview;
@@ -43,7 +43,7 @@
 	GtkWidget *statusbar;
 	CxpProfile *profile;
 	gboolean dispose_has_run;
-};
+} CxplorerWindowPrivate;
 
 #define CXPLORER_WINDOW_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), CXPLORER_TYPE_WINDOW, CxplorerWindowPrivate))
 
Index: cxplorer/src/cxplorer-window.h
diff -u cxplorer/src/cxplorer-window.h:1.1 cxplorer/src/cxplorer-window.h:1.2
--- cxplorer/src/cxplorer-window.h:1.1	Thu Apr  7 23:11:43 2005
+++ cxplorer/src/cxplorer-window.h	Fri Apr  8 01:53:09 2005
@@ -41,18 +41,13 @@
 
 typedef struct _CxplorerWindow CxplorerWindow;
 typedef struct _CxplorerWindowClass CxplorerWindowClass;
-typedef struct _CxplorerWindowPrivate CxplorerWindowPrivate;
 
 struct _CxplorerWindow {
 	GtkWindow parent;
-	/* instance members */
-        CxplorerWindowPrivate *private;
 };
 
 struct _CxplorerWindowClass {
 	GtkWindowClass parent;
-
-	/* class members */
 };
 
 /* used by CXPLORER_TYPE_WINDOW */


Cxplorer-cvs メーリングリストの案内
Back to archive index