gnome-commander r1513 - in branches/gcmd-1-3/src: . tags
- From: epiotr svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-commander r1513 - in branches/gcmd-1-3/src: . tags
- Date: Tue, 15 Jan 2008 17:07:26 +0000 (GMT)
Author: epiotr
Date: Tue Jan 15 17:07:26 2008
New Revision: 1513
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=1513&view=rev
Log:
Code cleanup
Modified:
branches/gcmd-1-3/src/gnome-cmd-advrename-lexer.ll
branches/gcmd-1-3/src/tags/gnome-cmd-tags.h
Modified: branches/gcmd-1-3/src/gnome-cmd-advrename-lexer.ll
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-advrename-lexer.ll (original)
+++ branches/gcmd-1-3/src/gnome-cmd-advrename-lexer.ll Tue Jan 15 17:07:26 2008
@@ -446,7 +446,7 @@
default : break;
}
- strftime(new_fname,new_fname_size,fmt.c_str(),localtime(&finfo->info->mtime));
+ strftime(new_fname, new_fname_size, fmt.c_str(), localtime(&finfo->info->mtime));
g_free(fname);
Modified: branches/gcmd-1-3/src/tags/gnome-cmd-tags.h
==============================================================================
--- branches/gcmd-1-3/src/tags/gnome-cmd-tags.h (original)
+++ branches/gcmd-1-3/src/tags/gnome-cmd-tags.h Tue Jan 15 17:07:26 2008
@@ -490,6 +490,7 @@
return gcmd_tags_get_value(finfo, gcmd_tags_get_tag_by_name(tag_name, tag_class));
}
+
class GnomeCmdFileMetadata
{
public:
@@ -509,16 +510,16 @@
GnomeCmdFileMetadata() {} // to make g++ 3.4 happy
- gboolean is_accessed(const GnomeCmdTagClass tag_class) const;
- gboolean is_accessed(const GnomeCmdTag tag) const;
- void mark_as_accessed(const GnomeCmdTagClass tag_class) { accessed[tag_class] = TRUE; }
- void mark_as_accessed(const GnomeCmdTag tag);
+ gboolean is_accessed (const GnomeCmdTagClass tag_class) const;
+ gboolean is_accessed (const GnomeCmdTag tag) const;
+ void mark_as_accessed (const GnomeCmdTagClass tag_class) { accessed[tag_class] = TRUE; }
+ void mark_as_accessed (const GnomeCmdTag tag);
- void add(const GnomeCmdTag tag, std::string value);
- void add(const GnomeCmdTag tag, const gchar *value);
+ void add (const GnomeCmdTag tag, std::string value);
+ void add (const GnomeCmdTag tag, const gchar *value);
template <typename T>
- void add(const GnomeCmdTag tag, const T &value);
- void addf(const GnomeCmdTag tag, const gchar *fmt, ...);
+ void add (const GnomeCmdTag tag, const T &value);
+ void addf (const GnomeCmdTag tag, const gchar *fmt, ...);
gboolean has_tag (const GnomeCmdTag tag);
@@ -529,7 +530,7 @@
};
-inline gboolean GnomeCmdFileMetadata::is_accessed(const GnomeCmdTagClass tag_class) const
+inline gboolean GnomeCmdFileMetadata::is_accessed (const GnomeCmdTagClass tag_class) const
{
ACCESSED_COLL::const_iterator elem = accessed.find(tag_class);
@@ -537,7 +538,7 @@
}
-inline void GnomeCmdFileMetadata::add(const GnomeCmdTag tag, std::string value)
+inline void GnomeCmdFileMetadata::add (const GnomeCmdTag tag, std::string value)
{
if (value.empty())
return;
@@ -553,7 +554,7 @@
}
-inline void GnomeCmdFileMetadata::add(const GnomeCmdTag tag, const gchar *value)
+inline void GnomeCmdFileMetadata::add (const GnomeCmdTag tag, const gchar *value)
{
if (value && *value)
add(tag, std::string(value));
@@ -561,7 +562,7 @@
template <typename T>
-inline void GnomeCmdFileMetadata::add(const GnomeCmdTag tag, const T &value)
+inline void GnomeCmdFileMetadata::add (const GnomeCmdTag tag, const T &value)
{
std::ostringstream os;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]