aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-09-18 00:45:36 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-09-18 00:45:36 +0800
commit3d1b5c1a2e3d8d90e0f9dd713a434eb8ca388bfd (patch)
treec46759c3d72a69fb0c148dd811527b1319419b9e
parentfc696897198e06c756e009b0eedb033441b31be7 (diff)
downloadgsoc2013-evolution-3d1b5c1a2e3d8d90e0f9dd713a434eb8ca388bfd.tar
gsoc2013-evolution-3d1b5c1a2e3d8d90e0f9dd713a434eb8ca388bfd.tar.gz
gsoc2013-evolution-3d1b5c1a2e3d8d90e0f9dd713a434eb8ca388bfd.tar.bz2
gsoc2013-evolution-3d1b5c1a2e3d8d90e0f9dd713a434eb8ca388bfd.tar.lz
gsoc2013-evolution-3d1b5c1a2e3d8d90e0f9dd713a434eb8ca388bfd.tar.xz
gsoc2013-evolution-3d1b5c1a2e3d8d90e0f9dd713a434eb8ca388bfd.tar.zst
gsoc2013-evolution-3d1b5c1a2e3d8d90e0f9dd713a434eb8ca388bfd.zip
Remove some leftover junk.
svn path=/trunk/; revision=18088
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-local-storage.c24
2 files changed, 5 insertions, 24 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 981014e4a5..4a72c925ad 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,7 +1,12 @@
+2002-09-17 Ettore Perazzoli <ettore@ximian.com>
+
+ * e-local-storage.c: Remove some leftover junk.
+
2002-09-17 Kjartan Maraas <kmaraas@gnome.org>
* e-folder-list.c (create_display_string): Mark a string for
translation.
+
* evolution-folder-selection-button.c (set_folder): Same here.
2002-09-17 Ettore Perazzoli <ettore@ximian.com>
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c
index 611f62cb2b..a90a37ecf9 100644
--- a/shell/e-local-storage.c
+++ b/shell/e-local-storage.c
@@ -818,28 +818,6 @@ struct _XferData {
};
typedef struct _XferData XferData;
-static int nesting = 0;
-
-#define PRINT_ENTER() \
- while (0) { \
- int _i; \
- nesting ++; \
- \
- for (_i = 0; _i < nesting; _i ++) \
- putchar (' '); \
- printf ("Enter %s", __FUNCTION__); \
- }
-
-#define PRINT_EXIT() \
- while (0) { \
- int _i; \
- \
- for (_i = 0; _i < nesting; _i ++) \
- putchar (' '); \
- printf ("Exit %s", __FUNCTION__); \
- nesting --; \
- }
-
static void
async_xfer_folder_step (ELocalStorage *local_storage,
const char *source_path,
@@ -854,7 +832,6 @@ async_xfer_folder_step (ELocalStorage *local_storage,
char *physical_path;
char *physical_uri;
- PRINT_ENTER ();
priv = local_storage->priv;
source_folder = e_storage_get_folder (E_STORAGE (local_storage), source_path);
@@ -880,7 +857,6 @@ async_xfer_folder_step (ELocalStorage *local_storage,
component_client_callback,
component_client_callback_data);
g_free (physical_uri);
- PRINT_EXIT ();
}
static void