Слияние кода завершено, страница обновится автоматически
/*
qqeditaccountwidget.h - Kopete QQ edit Account
Copyright (c) 2014 by Jun Zhang <jun.zhang@i-soft.com.cn>
Copyright (c) 2003 by Will Stephenson <will@stevello.free-online.co.uk>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#include "qqeditaccountwidget.h"
#include <qlayout.h>
#include <qlineedit.h>
//Added by qt3to4:
#include <QVBoxLayout>
#include <kdebug.h>
#include "kopeteaccount.h"
#include "kopetecontact.h"
#include "ui_qqaccountpreferences.h"
#include "qqaccount.h"
#include "qqprotocol.h"
QQEditAccountWidget::QQEditAccountWidget( QWidget* parent, Kopete::Account* account)
: QWidget( parent ), KopeteEditAccountWidget( account )
{
QVBoxLayout *layout = new QVBoxLayout( this );
kDebug(14210) ;
QWidget *widget = new QWidget( this );
m_preferencesWidget = new Ui::QQAccountPreferences();
m_preferencesWidget->setupUi( widget );
layout->addWidget( widget );
}
QQEditAccountWidget::~QQEditAccountWidget()
{
delete m_preferencesWidget;
}
Kopete::Account* QQEditAccountWidget::apply()
{
QString accountName;
if ( m_preferencesWidget->m_acctName->text().isEmpty() )
accountName = "QQ Account";
else
accountName = m_preferencesWidget->m_acctName->text();
if ( account() )
// FIXME: ? account()->setAccountLabel(accountName);
account()->myself()->setProperty( Kopete::Global::Properties::self()->nickName(), accountName );
else
setAccount( new QQAccount( WebqqProtocol::protocol(), accountName ) );
return account();
}
bool QQEditAccountWidget::validateData()
{
//return !( m_preferencesWidget->m_acctName->text().isEmpty() );
return true;
}
#include "qqeditaccountwidget.moc"
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )