summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:52 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:52 -0500
commitb5f543cd3ac21fbe8bf461de25a6216533453bb6 (patch)
tree3161c7d02598f1ace3af6031c02c3607755ef073 /doc
parentf0cc3689b3b210e9e27e0367112790fd45565ee7 (diff)
downloadqt3-b5f543cd3ac21fbe8bf461de25a6216533453bb6.tar.gz
qt3-b5f543cd3ac21fbe8bf461de25a6216533453bb6.zip
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'doc')
-rw-r--r--doc/html/qaction-application-example.html2
-rw-r--r--doc/html/qwhatsthis.html2
-rw-r--r--doc/html/simple-application-example.html2
-rw-r--r--doc/html/simple-application.html4
4 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/qaction-application-example.html b/doc/html/qaction-application-example.html
index 406d3f6..f15a4af 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 &lt;em&gt;new file&lt;/em&gt;. &lt;br&gt;"
"You can also select the &lt;b&gt;Open&lt;/b&gt; command "
"from the &lt;b&gt;File&lt;/b&gt; menu.&lt;/p&gt;";
-<a name="x1140"></a> QMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "fileopen",
+<a name="x1140"></a> QMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open",
<a name="x1125"></a> fileOpenAction-&gt;<a href="qaction.html#iconSet">iconSet</a>().pixmap() );
<a name="x1126"></a> fileOpenAction-&gt;<a href="qaction.html#setWhatsThis">setWhatsThis</a>( fileOpenText );
diff --git a/doc/html/qwhatsthis.html b/doc/html/qwhatsthis.html
index eafc62f..122fe42 100644
--- a/doc/html/qwhatsthis.html
+++ b/doc/html/qwhatsthis.html
@@ -89,7 +89,7 @@ stylesheet. This makes it possible to embed images. See
"Click this button to open a &lt;em&gt;new file&lt;/em&gt;. &lt;br&gt;"
"You can also select the &lt;b&gt;Open&lt;/b&gt; command "
"from the &lt;b&gt;File&lt;/b&gt; menu.&lt;/p&gt;";
- <a name="x2104"></a> QMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "fileopen",
+ <a name="x2104"></a> QMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open",
<a name="x2102"></a> fileOpenAction-&gt;<a href="qaction.html#iconSet">iconSet</a>().pixmap() );
<a name="x2103"></a> fileOpenAction-&gt;<a href="qaction.html#setWhatsThis">setWhatsThis</a>( fileOpenText );
</pre>
diff --git a/doc/html/simple-application-example.html b/doc/html/simple-application-example.html
index b8a5ef7..80c2207 100644
--- a/doc/html/simple-application-example.html
+++ b/doc/html/simple-application-example.html
@@ -161,7 +161,7 @@ private:
<a name="x1591"></a> QWhatsThis::<a href="qwhatsthis.html#add">add</a>( fileOpen, fileOpenText );
-<a name="x1558"></a> QMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "fileopen", openIcon );
+<a name="x1558"></a> QMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open", openIcon );
const char * fileSaveText = "&lt;p&gt;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 e016572..e414a35 100644
--- a/doc/html/simple-application.html
+++ b/doc/html/simple-application.html
@@ -232,10 +232,10 @@ function, as its mouse interface is unusual.
</pre>
<p> With the above line we add the "What's This?" help-text to the
<em>fileOpen</em> button...
-<p> <pre> QMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "fileopen", openIcon );
+<p> <pre> QMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open", openIcon );
</pre>
<p> ... and tell the rich-text engine that when a help-text (like the one
-saved in <em>fileOpenText</em>) requests an image named "fileopen", the <em>openIcon</em> pixmap is used.
+saved in <em>fileOpenText</em>) requests an image named "document-open", the <em>openIcon</em> pixmap is used.
<p> <pre> const char * fileSaveText = "&lt;p&gt;Click this button to save the file you "
"are editing. You will be prompted for a file name.\n"
"You can also select the &lt;b&gt;Save&lt;/b&gt; command "