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

« back to all changes in this revision

Viewing changes to distro/dev-tools/qt5-test/ed5a.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 <QtWidgets>
 
2
#include "ed5.h"
 
3
 
 
4
Window::Window()
 
5
{
 
6
  edit2 = new QLineEdit;
 
7
  QGridLayout *echoLayout = new QGridLayout;
 
8
  echoLayout->addWidget(edit2, 1, 0, 1, 2);
 
9
  setLayout(echoLayout);
 
10
}