~ubuntu-branches/ubuntu/jaunty/htop/jaunty

« back to all changes in this revision

Viewing changes to Settings.c

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2008-04-26 13:57:14 UTC
  • mfrom: (1.1.10 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080426135714-teunz1rh1mda44w1
Tags: 0.7-1
* New upstrem version. (Closes: #452634)
* Move URL to homepage header.
* Bumped Standards-Version (no changes needed).
* Fixed watch file. (Closes: #449631)

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
      } else if (String_eq(option[0], "header_margin")) {
141
141
         this->header->margin = atoi(option[1]);
142
142
      } else if (String_eq(option[0], "expand_system_time")) {
143
 
         this->pl->expandSystemTime = atoi(option[1]);
 
143
         // Compatibility option.
 
144
         this->pl->detailedCPUTime = atoi(option[1]);
 
145
      } else if (String_eq(option[0], "detailed_cpu_time")) {
 
146
         this->pl->detailedCPUTime = atoi(option[1]);
144
147
      } else if (String_eq(option[0], "delay")) {
145
148
         this->delay = atoi(option[1]);
146
149
      } else if (String_eq(option[0], "color_scheme")) {
197
200
   fprintf(fd, "highlight_megabytes=%d\n", (int) this->pl->highlightMegabytes);
198
201
   fprintf(fd, "tree_view=%d\n", (int) this->pl->treeView);
199
202
   fprintf(fd, "header_margin=%d\n", (int) this->header->margin);
200
 
   fprintf(fd, "expand_system_time=%d\n", (int) this->pl->expandSystemTime);
 
203
   fprintf(fd, "detailed_cpu_time=%d\n", (int) this->pl->detailedCPUTime);
201
204
   fprintf(fd, "color_scheme=%d\n", (int) this->colorScheme);
202
205
   fprintf(fd, "delay=%d\n", (int) this->delay);
203
206
   fprintf(fd, "left_meters=");