22 #include "configguiblank.h" 24 #include <tdelocale.h> 29 ConfigGuiBlank::ConfigGuiBlank( const QSync::Member &member, TQWidget *parent ) 30 : ConfigGui( member, parent ) 32 TQLabel *label = new TQLabel( i18n( "This member/plugin needs no configuration." ), this ); 33 topLayout()->addWidget( label ); 36 void ConfigGuiBlank::load( const TQString& ) 40 TQString ConfigGuiBlank::save() const 42 TQString xml = "<config></config>";
|