~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to examples/widgets/tetrix/tetrixpiece.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-10-12 23:14:14 UTC
  • mto: (15.1.1 lenny) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20061012231414-y2oqbom5dy389os0
Tags: upstream-4.2.0
ImportĀ upstreamĀ versionĀ 4.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
void TetrixPiece::setRandomShape()
31
31
{
32
 
    setShape(TetrixShape(rand() % 7 + 1));
 
32
    setShape(TetrixShape(qrand() % 7 + 1));
33
33
}
34
34
 
35
35
void TetrixPiece::setShape(TetrixShape shape)