~ubuntu-branches/ubuntu/utopic/dvdstyler/utopic-proposed

« back to all changes in this revision

Viewing changes to src/MessageDlg.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-03-22 10:17:38 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20100322101738-221vbm516ygfnmfj
Tags: upstream-1.8.0.2
ImportĀ upstreamĀ versionĀ 1.8.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
// Purpose:     Message dialog with "Don't show again" checkbox
4
4
// Author:      Alex Thuering
5
5
// Created:     26.03.2009
6
 
// RCS-ID:      $Id: MessageDlg.cpp,v 1.1 2009/03/29 19:33:52 ntalex Exp $
 
6
// RCS-ID:      $Id: MessageDlg.cpp,v 1.2 2010/02/22 22:47:18 ntalex Exp $
7
7
// Copyright:   (c) Alex Thuering
8
8
// Licence:     GPL
9
9
/////////////////////////////////////////////////////////////////////////////
77
77
        
78
78
        // 3) buttons
79
79
        int center_flag = wxEXPAND;
80
 
        wxSizer *sizerBtn = CreateButtonSizer(m_dialogStyle & ButtonSizerFlags);
 
80
        wxSizer *sizerBtn = CreateButtonSizer(m_dialogStyle & (wxOK|wxCANCEL|wxYES_NO|wxNO_DEFAULT));
81
81
        if ( sizerBtn )
82
82
                topsizer->Add(sizerBtn, 0, center_flag | wxALL, 10 );
83
83