~ubuntu-branches/ubuntu/warty/koffice/warty

« back to all changes in this revision

Viewing changes to lib/kscript/example16.ks

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
main
2
 
{
3
 
        a = QApplication();
4
 
        print( "---- Application ----" );
5
 
        x = QWidget();
6
 
        x.show();
7
 
        print( "--------" );
8
 
        y = QLabel( x );
9
 
        print( "--------" );
10
 
        y = 0;
11
 
        print( "---- Visible ----" );
12
 
        x.destroy();
13
 
        print( "---- Destroy ----" );
14
 
        x = 0;
15
 
        a.exec();
16
 
}