diff --git a/doc/html/ntqwhatsthis.html b/doc/html/ntqwhatsthis.html index f60fbbae..338c5873 100644 --- a/doc/html/ntqwhatsthis.html +++ b/doc/html/ntqwhatsthis.html @@ -89,7 +89,7 @@ stylesheet. This makes it possible to embed images. See "Click this button to open a <em>new file</em>. <br>" "You can also select the <b>Open</b> command " "from the <b>File</b> menu.</p>"; - TQMimeSourceFactory::defaultFactory()->setPixmap( "fileopen", + TQMimeSourceFactory::defaultFactory()->setPixmap( "document-open", fileOpenAction->iconSet().pixmap() ); fileOpenAction->setWhatsThis( fileOpenText ); diff --git a/doc/html/qaction-application-example.html b/doc/html/qaction-application-example.html index 5431f196..fd030627 100644 --- a/doc/html/qaction-application-example.html +++ b/doc/html/qaction-application-example.html @@ -152,7 +152,7 @@ private: "Click this button to open a <em>new file</em>. <br>" "You can also select the <b>Open</b> command " "from the <b>File</b> menu.</p>"; - TQMimeSourceFactory::defaultFactory()->setPixmap( "fileopen", + TQMimeSourceFactory::defaultFactory()->setPixmap( "document-open", fileOpenAction->iconSet().pixmap() ); fileOpenAction->setWhatsThis( fileOpenText ); diff --git a/doc/html/simple-application-example.html b/doc/html/simple-application-example.html index 3676b6c7..f7cac665 100644 --- a/doc/html/simple-application-example.html +++ b/doc/html/simple-application-example.html @@ -161,7 +161,7 @@ private: TQWhatsThis::add( fileOpen, fileOpenText ); - TQMimeSourceFactory::defaultFactory()->setPixmap( "fileopen", openIcon ); + TQMimeSourceFactory::defaultFactory()->setPixmap( "document-open", openIcon ); const char * fileSaveText = "<p>Click this button to save the file you " "are editing. You will be prompted for a file name.\n" diff --git a/doc/html/simple-application.html b/doc/html/simple-application.html index 429e7736..a6884cb7 100644 --- a/doc/html/simple-application.html +++ b/doc/html/simple-application.html @@ -232,10 +232,10 @@ function, as its mouse interface is unusual.

With the above line we add the "What's This?" help-text to the fileOpen button... -

        TQMimeSourceFactory::defaultFactory()->setPixmap( "fileopen", openIcon );
+

        TQMimeSourceFactory::defaultFactory()->setPixmap( "document-open", openIcon );
 

... and tell the rich-text engine that when a help-text (like the one -saved in fileOpenText) requests an image named "fileopen", the openIcon pixmap is used. +saved in fileOpenText) requests an image named "document-open", the openIcon pixmap is used.

        const char * fileSaveText = "<p>Click this button to save the file you "
                      "are editing. You will be prompted for a file name.\n"
                      "You can also select the <b>Save</b> command "
diff --git a/examples/action/application.cpp b/examples/action/application.cpp
index 2571379d..0edd623c 100644
--- a/examples/action/application.cpp
+++ b/examples/action/application.cpp
@@ -57,7 +57,7 @@ ApplicationWindow::ApplicationWindow()
                      "Click this button to open a new file. 
" "You can also select the Open command " "from the File menu.

"; - TQMimeSourceFactory::defaultFactory()->setPixmap( "fileopen", + TQMimeSourceFactory::defaultFactory()->setPixmap( "document-open", fileOpenAction->iconSet().pixmap() ); fileOpenAction->setWhatsThis( fileOpenText ); diff --git a/examples/application/application.cpp b/examples/application/application.cpp index ee7b945f..d67a5149 100644 --- a/examples/application/application.cpp +++ b/examples/application/application.cpp @@ -67,7 +67,7 @@ ApplicationWindow::ApplicationWindow() TQWhatsThis::add( fileOpen, fileOpenText ); - TQMimeSourceFactory::defaultFactory()->setPixmap( "fileopen", openIcon ); + TQMimeSourceFactory::defaultFactory()->setPixmap( "document-open", openIcon ); const char * fileSaveText = "

Click this button to save the file you " "are editing. You will be prompted for a file name.\n" diff --git a/tools/designer/plugins/wizards/mainwindowwizard.ui.h b/tools/designer/plugins/wizards/mainwindowwizard.ui.h index 88814100..cc5b1c15 100644 --- a/tools/designer/plugins/wizards/mainwindowwizard.ui.h +++ b/tools/designer/plugins/wizards/mainwindowwizard.ui.h @@ -123,14 +123,14 @@ void MainWindowWizardBase::accept() TQtMsgHandler oldMsgHandler = qInstallMsgHandler( devNull ); - getPixmap( "filenew", pix ); + getPixmap( "document-new", pix ); TQAction *fileNewAction = dfw->createAction( tr( "New" ), pix, tr( "&New" ), CTRL + Key_N, 0, "fileNewAction" ); actions.insert( tr( "New" ), fileNewAction ); - getPixmap( "fileopen", pix ); + getPixmap( "document-open", pix ); TQAction *fileOpenAction = dfw->createAction( tr( "Open" ), pix, tr( "&Open..." ), CTRL + Key_O, 0, "fileOpenAction" ); actions.insert( tr( "Open" ), fileOpenAction ); - getPixmap( "filesave", pix ); + getPixmap( "document-save", pix ); TQAction *fileSaveAction = dfw->createAction( tr( "Save" ), pix, tr( "&Save" ), CTRL + Key_S, 0, "fileSaveAction" ); actions.insert( tr( "Save" ), fileSaveAction ); TQAction *fileSaveAsAction = dfw->createAction( tr( "Save As" ), TQIconSet(), tr( "Save &As..." ), 0, 0, "fileSaveAsAction" ); @@ -147,13 +147,13 @@ void MainWindowWizardBase::accept() getPixmap( "redo", pix ); TQAction *editRedoAction = dfw->createAction( tr( "Redo" ), pix, tr( "&Redo" ), CTRL + Key_Y, 0, "editRedoAction" ); actions.insert( tr( "Redo" ), editRedoAction ); - getPixmap( "editcut", pix ); + getPixmap( "edit-cut", pix ); TQAction *editCutAction = dfw->createAction( tr( "Cut" ), pix, tr( "Cu&t" ), CTRL + Key_X, 0, "editCutAction" ); actions.insert( tr( "Cut" ), editCutAction ); - getPixmap( "editcopy", pix ); + getPixmap( "edit-copy", pix ); TQAction *editCopyAction = dfw->createAction( tr( "Copy" ), pix, tr( "&Copy" ), CTRL + Key_C, 0, "editCopyAction" ); actions.insert( tr( "Copy" ), editCopyAction ); - getPixmap( "editpaste", pix ); + getPixmap( "edit-paste", pix ); TQAction *editPasteAction = dfw->createAction( tr( "Paste" ), pix, tr( "&Paste" ), CTRL + Key_V, 0, "editPasteAction" ); actions.insert( tr( "Paste" ), editPasteAction ); getPixmap( "searchfind", pix );