Skip to content

Commit

Permalink
Make indentation uniform across source files.
Browse files Browse the repository at this point in the history
This patch replaces tabs with spaces and sets indentation to 4 across
all source files. Previously there was a mix between spaces and tabs
between files and sometimes within a file as well as different
indentation widths.

It's regrettable that such a git-history intrusive commit is required.
  • Loading branch information
blixtra committed Jul 2, 2011
1 parent 401d84d commit 38c5296
Show file tree
Hide file tree
Showing 43 changed files with 6,559 additions and 6,559 deletions.
20 changes: 10 additions & 10 deletions src/argv.cpp
Expand Up @@ -8,15 +8,15 @@

namespace procman
{
OptionGroup::OptionGroup()
: Glib::OptionGroup("", ""),
show_system_tab(false)
{
Glib::OptionEntry sys_tab;
sys_tab.set_long_name("show-system-tab");
sys_tab.set_short_name('s');
sys_tab.set_description(_("Show the System tab"));
this->add_entry(sys_tab, this->show_system_tab);
}
OptionGroup::OptionGroup()
: Glib::OptionGroup("", ""),
show_system_tab(false)
{
Glib::OptionEntry sys_tab;
sys_tab.set_long_name("show-system-tab");
sys_tab.set_short_name('s');
sys_tab.set_description(_("Show the System tab"));
this->add_entry(sys_tab, this->show_system_tab);
}
}

14 changes: 7 additions & 7 deletions src/argv.h
Expand Up @@ -5,14 +5,14 @@

namespace procman
{
class OptionGroup
: public Glib::OptionGroup
{
public:
OptionGroup();
class OptionGroup
: public Glib::OptionGroup
{
public:
OptionGroup();

bool show_system_tab;
};
bool show_system_tab;
};
}

#endif // H_PROCMAN_ARGV_1205873424

0 comments on commit 38c5296

Please sign in to comment.