~ubuntu-branches/ubuntu/natty/boinc/natty

« back to all changes in this revision

Viewing changes to clientgui/AccountManagerInfoPage.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Hahler
  • Date: 2010-07-13 03:59:26 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20100713035926-8jun0z3d3yfl27k3
Tags: 6.10.58-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
    m_bAccountManagerListPopulated = false;
94
94
 
95
95
////@begin CAccountManagerInfoPage creation
96
 
    wxBitmap wizardBitmap(wxNullBitmap);
97
 
    wxWizardPageEx::Create( parent, ID_ACCOUNTMANAGERINFOPAGE, wizardBitmap );
 
96
    wxWizardPageEx::Create( parent, ID_ACCOUNTMANAGERINFOPAGE );
98
97
 
99
98
    CreateControls();
100
99
    GetSizer()->Fit(this);
155
154
 
156
155
    // Set validators
157
156
    m_pProjectUrlCtrl->SetValidator( CValidateURL( & m_strProjectURL ) );
 
157
    
 
158
#ifdef __WXMAC__
 
159
    //Accessibility
 
160
    HIViewRef listView = (HIViewRef)m_pProjectListCtrl->GetHandle();
 
161
    HIObjectRef   theObject = (HIObjectRef)HIViewGetSuperview(listView);
 
162
    HIObjectSetAccessibilityIgnored(theObject, true);
 
163
#endif
158
164
////@end CAccountManagerInfoPage content construction
159
165
}
160
166
 
265
271
            m_pProjectListCtrl->Append(
266
272
                wxString(pl.account_managers[i]->url.c_str(), wxConvUTF8),
267
273
                wxString(pl.account_managers[i]->name.c_str(), wxConvUTF8),
 
274
                wxString(pl.account_managers[i]->image.c_str(), wxConvUTF8),
268
275
                wxString(pl.account_managers[i]->description.c_str(), wxConvUTF8),
 
276
                false,
 
277
                false,
 
278
                false,
269
279
                true
270
280
            );
271
281
        }