summaryrefslogtreecommitdiffstats
path: root/kdgantt/itemAttributeDialog.ui.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
commit67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch)
tree5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /kdgantt/itemAttributeDialog.ui.h
parent2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff)
downloadtdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz
tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdgantt/itemAttributeDialog.ui.h')
-rw-r--r--kdgantt/itemAttributeDialog.ui.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdgantt/itemAttributeDialog.ui.h b/kdgantt/itemAttributeDialog.ui.h
index 348b3e97..3ab24af8 100644
--- a/kdgantt/itemAttributeDialog.ui.h
+++ b/kdgantt/itemAttributeDialog.ui.h
@@ -22,8 +22,8 @@
** licensing are not clear to you.
**
** As a special exception, permission is given to link this program
- ** with any edition of Qt, and distribute the resulting executable,
- ** without including the source code for Qt in the source distribution.
+ ** with any edition of TQt, and distribute the resulting executable,
+ ** without including the source code for TQt in the source distribution.
**
**********************************************************************/
@@ -31,7 +31,7 @@
/****************************************************************************
** ui.h extension file, included from the uic-generated form implementation.
**
-** If you wish to add, delete or rename slots use Qt Designer which will
+** If you wish to add, delete or rename slots use TQt Designer which will
** update this file, preserving your code. Create an init() slot in place of
** a constructor, and a destroy() slot in place of a destructor.
*****************************************************************************/
@@ -49,7 +49,7 @@ void itemAttributeDialog::init( )
void itemAttributeDialog::ChangeText_clicked()
{
if ( !myItem) return;
- TQColor c = QColorDialog::getColor( myItem->textColor(), this );
+ TQColor c = TQColorDialog::getColor( myItem->textColor(), this );
if ( c.isValid() )
myItem->setTextColor( c );
TQPixmap * pix = (TQPixmap *)ChangeText->pixmap();
@@ -65,7 +65,7 @@ void itemAttributeDialog::ChangeStart_clicked()
myItem->tqshapes( start, middle, end );
TQColor st, mi, en;
myItem->colors( st, mi, en );
- TQColor c = QColorDialog::getColor( st, this );
+ TQColor c = TQColorDialog::getColor( st, this );
if ( c.isValid() ) {
st = c;
ChangeStart->setPixmap( KDGanttView::getPixmap( start, st, backgroundColor(), 10 ) );
@@ -82,7 +82,7 @@ void itemAttributeDialog::ChangeMiddle_clicked()
myItem->tqshapes( start, middle, end );
TQColor st, mi, en;
myItem->colors( st, mi, en );
- TQColor c = QColorDialog::getColor( mi, this );
+ TQColor c = TQColorDialog::getColor( mi, this );
if ( c.isValid() ) {
mi = c;
ChangeMiddle->setPixmap( KDGanttView::getPixmap( middle, mi, backgroundColor(), 10 ) );
@@ -98,7 +98,7 @@ void itemAttributeDialog::ChangeEnd_clicked()
myItem->tqshapes( start, middle, end );
TQColor st, mi, en;
myItem->colors( st, mi, en );
- TQColor c = QColorDialog::getColor( en, this );
+ TQColor c = TQColorDialog::getColor( en, this );
if ( c.isValid() ) {
en = c;
ChangeEnd->setPixmap( KDGanttView::getPixmap( end, en, backgroundColor(), 10 ) );
@@ -275,7 +275,7 @@ void itemAttributeDialog::HighStart_clicked()
myItem->tqshapes( start, middle, end );
TQColor st, mi, en;
myItem->highlightColors( st, mi, en );
- TQColor c = QColorDialog::getColor( st, this );
+ TQColor c = TQColorDialog::getColor( st, this );
if ( c.isValid() ) {
st = c;
HighStart->setPixmap( KDGanttView::getPixmap( start, st, backgroundColor(), 10 ) );
@@ -292,7 +292,7 @@ void itemAttributeDialog::HighMiddle_clicked()
myItem->tqshapes( start, middle, end );
TQColor st, mi, en;
myItem->highlightColors( st, mi, en );
- TQColor c = QColorDialog::getColor( mi, this );
+ TQColor c = TQColorDialog::getColor( mi, this );
if ( c.isValid() ) {
mi = c;
HighMiddle->setPixmap( KDGanttView::getPixmap( middle, mi, backgroundColor(), 10 ) );
@@ -309,7 +309,7 @@ void itemAttributeDialog::HighEnd_clicked()
myItem->tqshapes( start, middle, end );
TQColor st, mi, en;
myItem->highlightColors( st, mi, en );
- TQColor c = QColorDialog::getColor( en, this );
+ TQColor c = TQColorDialog::getColor( en, this );
if ( c.isValid() ) {
en = c;
HighEnd->setPixmap( KDGanttView::getPixmap( end, en, backgroundColor(), 10 ) );