~ubuntu-branches/ubuntu/trusty/hime/trusty

« back to all changes in this revision

Viewing changes to distro/dev-tools/qt5-test/ed5.cpp

  • Committer: Package Import Robot
  • Author(s): Yao Wei (魏銘廷)
  • Date: 2012-06-09 11:42:18 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120609114218-1rildwuvtbxofbzl
Tags: 0.9.9+git20120619+dfsg-1
* Imported Upstream version 0.9.9+git20120609+dfsg
* debian/control:
  - upgrade dh compatibility to 9
  - add dependency to dpkg-dev
* debian/compat: upgrade dh compatibility to 9
add copyright information for DFSG git package
* debian/rules:
  - dirty hack for autoclean
  - remove moving gtk immodules to specific directories
  - add hardening flags
* debian/hime.install, debian/hime-gtk3-immodule.install:
  update gtk immodules install path
* debian/copyright: add copyright information for DFSG git package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <QApplication>
 
2
#include "ed5.h"
 
3
 
 
4
int main(int argc, char *argv[])
 
5
{
 
6
  QApplication a(argc, argv);
 
7
  Window l;
 
8
  l.show();
 
9
  return a.exec();
 
10
}