~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kstyles/web/plugin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <klocale.h>
 
2
#include "webstyle.h"
 
3
 
 
4
extern "C"
 
5
{
 
6
  KStyle *      allocate()      { return new WebStyle; }
 
7
  int           minor_version() { return 0; }
 
8
  int           major_version() { return 1; }
 
9
  const char *  description()   { return(i18n("Web style plugin").toUtf8()); }
 
10
}
 
11