All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kristen Carlson Accardi <kristen at linux.intel.com>
To: powertop@lists.01.org
Subject: Re: [Powertop] [PATCH] tab_window: null members on construction
Date: Thu, 31 Jan 2013 14:45:45 -0800	[thread overview]
Message-ID: <20130131144545.63b126c5@bluebird.jf.intel.com> (raw)
In-Reply-To: 20121219160652.GC3200@swordfish.minsk.epam.com

[-- Attachment #1: Type: text/plain, Size: 1138 bytes --]

On Wed, 19 Dec 2012 19:06:52 +0300
Sergey Senozhatsky <sergey.senozhatsky(a)gmail.com> wrote:

> introduce tab_window ctor and null memebers during construction.
> show_tab() may be called before window_refresh() [which sets ypad_pos
> and xpad_pos to 0], causing prefresh() call with uninit
> win->ypad_pos, win->xpad_pos args.
> 
> Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky(a)gmail.com>
> 
> ---
> 
>  src/display.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/src/display.h b/src/display.h
> index b450f8b..9af3ec0 100644
> --- a/src/display.h
> +++ b/src/display.h
> @@ -53,6 +53,14 @@ public:
>  	short int xpad_pos, ypad_pos; 
>  	WINDOW *win;
>  
> +	tab_window() {
> +		cursor_pos = 0;
> +		cursor_max = 0;
> +		xpad_pos =0;
> +		ypad_pos = 0;
> +		win = NULL;
> +	}
> +
>  	virtual void cursor_down(void) { 
>  		if (cursor_pos < cursor_max ) cursor_pos++;
> repaint(); } ;
> 
> _______________________________________________
> PowerTop mailing list
> PowerTop(a)lists.01.org
> https://lists.01.org/mailman/listinfo/powertop

applied, thanks.

Kristen

             reply	other threads:[~2013-01-31 22:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-31 22:45 Kristen Carlson Accardi [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-12-19 16:06 [Powertop] [PATCH] tab_window: null members on construction Sergey Senozhatsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130131144545.63b126c5@bluebird.jf.intel.com \
    --to=powertop@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.