diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/ntqsettings.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqsettings.html')
-rw-r--r-- | doc/html/ntqsettings.html | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/doc/html/ntqsettings.html b/doc/html/ntqsettings.html index 4889e2fe6..b2444d2a1 100644 --- a/doc/html/ntqsettings.html +++ b/doc/html/ntqsettings.html @@ -107,7 +107,7 @@ startup: TQSettings settings; settings.<a href="#setPath">setPath</a>( "MyCompany.com", "MyApplication" ); - <a href="ntqstring.html">TQString</a> bgColor = settings.<a href="#readEntry">readEntry</a>( "/colors/background", "white" ); + <a href="tqstring.html">TQString</a> bgColor = settings.<a href="#readEntry">readEntry</a>( "/colors/background", "white" ); int width = settings.<a href="#readNumEntry">readNumEntry</a>( "/geometry/width", 640 ); // ... </pre> @@ -143,16 +143,16 @@ example: <p> You can get a list of entry-holding keys by calling <a href="#entryList">entryList</a>(), and a list of key-holding keys using <a href="#subkeyList">subkeyList</a>(). <p> <pre> - <a href="ntqstringlist.html">TQStringList</a> keys = settings.entryList( "/MyApplication" ); + <a href="tqstringlist.html">TQStringList</a> keys = settings.entryList( "/MyApplication" ); // keys contains 'background color' and 'foreground color'. - <a href="ntqstringlist.html">TQStringList</a> keys = settings.entryList( "/MyApplication/recent files" ); + <a href="tqstringlist.html">TQStringList</a> keys = settings.entryList( "/MyApplication/recent files" ); // keys contains '1', '2' and '3'. - <a href="ntqstringlist.html">TQStringList</a> subkeys = settings.subkeyList( "/MyApplication" ); + <a href="tqstringlist.html">TQStringList</a> subkeys = settings.subkeyList( "/MyApplication" ); // subkeys contains 'geometry' and 'recent files' - <a href="ntqstringlist.html">TQStringList</a> subkeys = settings.subkeyList( "/MyApplication/recent files" ); + <a href="tqstringlist.html">TQStringList</a> subkeys = settings.subkeyList( "/MyApplication/recent files" ); // subkeys is empty. </pre> @@ -258,7 +258,7 @@ you can use the TQSettings object. Destroys the settings object. All modifications made to the settings will automatically be saved. <p> -<h3 class=fn>void <a name="beginGroup"></a>TQSettings::beginGroup ( const <a href="ntqstring.html">TQString</a> & group ) +<h3 class=fn>void <a name="beginGroup"></a>TQSettings::beginGroup ( const <a href="tqstring.html">TQString</a> & group ) </h3> Appends <em>group</em> to the current key prefix. <p> <pre> @@ -281,7 +281,7 @@ by a single call to <a href="#endGroup">endGroup</a>(). </pre> -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="entryList"></a>TQSettings::entryList ( const <a href="ntqstring.html">TQString</a> & key ) const +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="entryList"></a>TQSettings::entryList ( const <a href="tqstring.html">TQString</a> & key ) const </h3> Returns a list of the keys which contain entries under <em>key</em>. Does <em>not</em> return any keys that contain subkeys. <p> Example settings: @@ -295,7 +295,7 @@ Returns a list of the keys which contain entries under <em>key</em>. Does <em>no </pre> <pre> - <a href="ntqstringlist.html">TQStringList</a> keys = settings.entryList( "/MyCompany/MyApplication" ); + <a href="tqstringlist.html">TQStringList</a> keys = settings.entryList( "/MyCompany/MyApplication" ); </pre> <p> In the above example, <tt>keys</tt> will contain 'background color' and @@ -307,12 +307,12 @@ directly by specifying its full key, e.g. "/MyCompany/MyApplication/geometry/y". <p> <p>See also <a href="#subkeyList">subkeyList</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="group"></a>TQSettings::group () const +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="group"></a>TQSettings::group () const </h3> Returns the current key prefix, or a null string if there is no key prefix set. <p> <p>See also <a href="#beginGroup">beginGroup</a>(). -<h3 class=fn>void <a name="insertSearchPath"></a>TQSettings::insertSearchPath ( <a href="ntqsettings.html#System-enum">System</a> s, const <a href="ntqstring.html">TQString</a> & path ) +<h3 class=fn>void <a name="insertSearchPath"></a>TQSettings::insertSearchPath ( <a href="ntqsettings.html#System-enum">System</a> s, const <a href="tqstring.html">TQString</a> & path ) </h3> Inserts <em>path</em> into the settings search path. The semantics of <em>path</em> depends on the system <em>s</em>. It is usually easier and better to use <a href="#setPath">setPath</a>() instead of this function. @@ -392,7 +392,7 @@ the search path). <p> <p>Example: <a href="canvas-chart-example.html#x2890">chart/chartform.cpp</a>. -<h3 class=fn>bool <a name="readBoolEntry"></a>TQSettings::readBoolEntry ( const <a href="ntqstring.html">TQString</a> & key, bool def = FALSE, bool * ok = 0 ) const +<h3 class=fn>bool <a name="readBoolEntry"></a>TQSettings::readBoolEntry ( const <a href="tqstring.html">TQString</a> & key, bool def = FALSE, bool * ok = 0 ) const </h3> <p> Reads the entry specified by <em>key</em>, and returns a bool, or the @@ -401,7 +401,7 @@ If <em>ok</em> is non-null, *ok is set to TRUE if the key was read, FALSE otherwise. <p> <p>See also <a href="#readEntry">readEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#writeEntry">writeEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). -<h3 class=fn>double <a name="readDoubleEntry"></a>TQSettings::readDoubleEntry ( const <a href="ntqstring.html">TQString</a> & key, double def = 0, bool * ok = 0 ) const +<h3 class=fn>double <a name="readDoubleEntry"></a>TQSettings::readDoubleEntry ( const <a href="tqstring.html">TQString</a> & key, double def = 0, bool * ok = 0 ) const </h3> <p> Reads the entry specified by <em>key</em>, and returns a double, or the @@ -410,16 +410,16 @@ If <em>ok</em> is non-null, *ok is set to TRUE if the key was read, FALSE otherwise. <p> <p>See also <a href="#readEntry">readEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#writeEntry">writeEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="readEntry"></a>TQSettings::readEntry ( const <a href="ntqstring.html">TQString</a> & key, const <a href="ntqstring.html">TQString</a> & def = TQString::null, bool * ok = 0 ) const +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="readEntry"></a>TQSettings::readEntry ( const <a href="tqstring.html">TQString</a> & key, const <a href="tqstring.html">TQString</a> & def = TQString::null, bool * ok = 0 ) const </h3> -<p> Reads the entry specified by <em>key</em>, and returns a <a href="ntqstring.html">TQString</a>, or the +<p> Reads the entry specified by <em>key</em>, and returns a <a href="tqstring.html">TQString</a>, or the default value, <em>def</em>, if the entry couldn't be read. If <em>ok</em> is non-null, *ok is set to TRUE if the key was read, FALSE otherwise. <p> <p>See also <a href="#readListEntry">readListEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#writeEntry">writeEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="readListEntry"></a>TQSettings::readListEntry ( const <a href="ntqstring.html">TQString</a> & key, bool * ok = 0 ) const +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="readListEntry"></a>TQSettings::readListEntry ( const <a href="tqstring.html">TQString</a> & key, bool * ok = 0 ) const </h3> Reads the entry specified by <em>key</em> as a string. If <em>ok</em> is not @@ -428,7 +428,7 @@ set to FALSE. <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqstringlist.html">TQStringList</a> list = mySettings.readListEntry( "recentfiles" ); + <a href="tqstringlist.html">TQStringList</a> list = mySettings.readListEntry( "recentfiles" ); TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); @@ -436,14 +436,14 @@ over a copy, e.g. } </pre> -<p> <p>See also <a href="#readEntry">readEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#writeEntry">writeEntry</a>(), <a href="#removeEntry">removeEntry</a>(), and <a href="ntqstringlist.html#split">TQStringList::split</a>(). +<p> <p>See also <a href="#readEntry">readEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#writeEntry">writeEntry</a>(), <a href="#removeEntry">removeEntry</a>(), and <a href="tqstringlist.html#split">TQStringList::split</a>(). -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="readListEntry-4"></a>TQSettings::readListEntry ( const <a href="ntqstring.html">TQString</a> & key, const <a href="qchar.html">TQChar</a> & separator, bool * ok = 0 ) const +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="readListEntry-4"></a>TQSettings::readListEntry ( const <a href="tqstring.html">TQString</a> & key, const <a href="qchar.html">TQChar</a> & separator, bool * ok = 0 ) const </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. <p> Reads the entry specified by <em>key</em> as a string. The <em>separator</em> -is used to create a <a href="ntqstringlist.html">TQStringList</a> by calling <a href="ntqstringlist.html#split">TQStringList::split</a>(<em>separator</em>, entry). If <em>ok</em> is not 0: <em>*ok</em> is set to TRUE +is used to create a <a href="tqstringlist.html">TQStringList</a> by calling <a href="tqstringlist.html#split">TQStringList::split</a>(<em>separator</em>, entry). If <em>ok</em> is not 0: <em>*ok</em> is set to TRUE if the key was read, otherwise <em>*ok</em> is set to FALSE. <p> <b>Warning:</b> As the documentation states, TQStringList::split() will omit empty strings from the list. Because of this, it is @@ -453,7 +453,7 @@ that do not take a <em>separator</em> argument. <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqstringlist.html">TQStringList</a> list = mySettings.readListEntry( "size", " " ); + <a href="tqstringlist.html">TQStringList</a> list = mySettings.readListEntry( "size", " " ); TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); @@ -461,9 +461,9 @@ over a copy, e.g. } </pre> -<p> <p>See also <a href="#readEntry">readEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#writeEntry">writeEntry</a>(), <a href="#removeEntry">removeEntry</a>(), and <a href="ntqstringlist.html#split">TQStringList::split</a>(). +<p> <p>See also <a href="#readEntry">readEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#writeEntry">writeEntry</a>(), <a href="#removeEntry">removeEntry</a>(), and <a href="tqstringlist.html#split">TQStringList::split</a>(). -<h3 class=fn>int <a name="readNumEntry"></a>TQSettings::readNumEntry ( const <a href="ntqstring.html">TQString</a> & key, int def = 0, bool * ok = 0 ) const +<h3 class=fn>int <a name="readNumEntry"></a>TQSettings::readNumEntry ( const <a href="tqstring.html">TQString</a> & key, int def = 0, bool * ok = 0 ) const </h3> <p> Reads the entry specified by <em>key</em>, and returns an integer, or the @@ -472,7 +472,7 @@ If <em>ok</em> is non-null, *ok is set to TRUE if the key was read, FALSE otherwise. <p> <p>See also <a href="#readEntry">readEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#writeEntry">writeEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). -<h3 class=fn>bool <a name="removeEntry"></a>TQSettings::removeEntry ( const <a href="ntqstring.html">TQString</a> & key ) +<h3 class=fn>bool <a name="removeEntry"></a>TQSettings::removeEntry ( const <a href="tqstring.html">TQString</a> & key ) </h3> Removes the entry specified by <em>key</em>. <p> Returns true if the entry was successfully removed; otherwise @@ -480,7 +480,7 @@ returns false. Note that removing the last entry in any given folder, will also remove the folder. <p> <p>See also <a href="#readEntry">readEntry</a>() and <a href="#writeEntry">writeEntry</a>(). -<h3 class=fn>void <a name="removeSearchPath"></a>TQSettings::removeSearchPath ( <a href="ntqsettings.html#System-enum">System</a> s, const <a href="ntqstring.html">TQString</a> & path ) +<h3 class=fn>void <a name="removeSearchPath"></a>TQSettings::removeSearchPath ( <a href="ntqsettings.html#System-enum">System</a> s, const <a href="tqstring.html">TQString</a> & path ) </h3> Removes all occurrences of <em>path</em> (using exact matching) from the settings search path for system <em>s</em>. Note that the default search @@ -491,7 +491,7 @@ paths cannot be removed. </h3> Set the current key prefix to the empty string. -<h3 class=fn>void <a name="setPath"></a>TQSettings::setPath ( const <a href="ntqstring.html">TQString</a> & domain, const <a href="ntqstring.html">TQString</a> & product, <a href="ntqsettings.html#Scope-enum">Scope</a> scope = Global ) +<h3 class=fn>void <a name="setPath"></a>TQSettings::setPath ( const <a href="tqstring.html">TQString</a> & domain, const <a href="tqstring.html">TQString</a> & product, <a href="ntqsettings.html#Scope-enum">Scope</a> scope = Global ) </h3> Insert platform-dependent paths from platform-independent information. <p> The <em>domain</em> should be an Internet domain name @@ -504,7 +504,7 @@ TQSettings::Global for system-wide settings (generally these will be read-only to many users). <p> Not all information is relevant on all systems. -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="subkeyList"></a>TQSettings::subkeyList ( const <a href="ntqstring.html">TQString</a> & key ) const +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="subkeyList"></a>TQSettings::subkeyList ( const <a href="tqstring.html">TQString</a> & key ) const </h3> Returns a list of the keys which contain subkeys under <em>key</em>. Does <em>not</em> return any keys that contain entries. <p> Example settings: @@ -521,7 +521,7 @@ Returns a list of the keys which contain subkeys under <em>key</em>. Does <em>no </pre> <pre> - <a href="ntqstringlist.html">TQStringList</a> keys = settings.subkeyList( "/MyCompany/MyApplication" ); + <a href="tqstringlist.html">TQStringList</a> keys = settings.subkeyList( "/MyCompany/MyApplication" ); </pre> <p> In the above example, <tt>keys</tt> will contain 'geometry' and @@ -542,7 +542,7 @@ is not supported in this version of TQSettings. This is a known issue which will be fixed in TQt-4. <p> <p>See also <a href="#entryList">entryList</a>(). -<h3 class=fn>bool <a name="writeEntry"></a>TQSettings::writeEntry ( const <a href="ntqstring.html">TQString</a> & key, bool value ) +<h3 class=fn>bool <a name="writeEntry"></a>TQSettings::writeEntry ( const <a href="tqstring.html">TQString</a> & key, bool value ) </h3> Writes the boolean entry <em>value</em> into key <em>key</em>. The <em>key</em> is created if it doesn't exist. Any previous value is overwritten by <em>value</em>. @@ -554,7 +554,7 @@ TQt 4. <p> <p>See also <a href="#readListEntry">readListEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). <p>Example: <a href="canvas-chart-example.html#x2891">chart/chartform.cpp</a>. -<h3 class=fn>bool <a name="writeEntry-2"></a>TQSettings::writeEntry ( const <a href="ntqstring.html">TQString</a> & key, double value ) +<h3 class=fn>bool <a name="writeEntry-2"></a>TQSettings::writeEntry ( const <a href="tqstring.html">TQString</a> & key, double value ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Writes the double entry <em>value</em> into key <em>key</em>. The <em>key</em> is @@ -563,7 +563,7 @@ created if it doesn't exist. Any previous value is overwritten by <em>value</em> returned; otherwise TRUE is returned. <p> <p>See also <a href="#readListEntry">readListEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). -<h3 class=fn>bool <a name="writeEntry-3"></a>TQSettings::writeEntry ( const <a href="ntqstring.html">TQString</a> & key, int value ) +<h3 class=fn>bool <a name="writeEntry-3"></a>TQSettings::writeEntry ( const <a href="tqstring.html">TQString</a> & key, int value ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Writes the integer entry <em>value</em> into key <em>key</em>. The <em>key</em> is @@ -572,7 +572,7 @@ created if it doesn't exist. Any previous value is overwritten by <em>value</em> returned; otherwise TRUE is returned. <p> <p>See also <a href="#readListEntry">readListEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). -<h3 class=fn>bool <a name="writeEntry-5"></a>TQSettings::writeEntry ( const <a href="ntqstring.html">TQString</a> & key, const <a href="ntqstring.html">TQString</a> & value ) +<h3 class=fn>bool <a name="writeEntry-5"></a>TQSettings::writeEntry ( const <a href="tqstring.html">TQString</a> & key, const <a href="tqstring.html">TQString</a> & value ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Writes the string entry <em>value</em> into key <em>key</em>. The <em>key</em> is @@ -582,7 +582,7 @@ value will be an empty string. returned; otherwise TRUE is returned. <p> <p>See also <a href="#readListEntry">readListEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). -<h3 class=fn>bool <a name="writeEntry-6"></a>TQSettings::writeEntry ( const <a href="ntqstring.html">TQString</a> & key, const <a href="ntqstringlist.html">TQStringList</a> & value ) +<h3 class=fn>bool <a name="writeEntry-6"></a>TQSettings::writeEntry ( const <a href="tqstring.html">TQString</a> & key, const <a href="tqstringlist.html">TQStringList</a> & value ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Writes the string list entry <em>value</em> into key <em>key</em>. The <em>key</em> @@ -592,18 +592,18 @@ by <em>value</em>. returned; otherwise returns TRUE. <p> <p>See also <a href="#readListEntry">readListEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), and <a href="#removeEntry">removeEntry</a>(). -<h3 class=fn>bool <a name="writeEntry-7"></a>TQSettings::writeEntry ( const <a href="ntqstring.html">TQString</a> & key, const <a href="ntqstringlist.html">TQStringList</a> & value, const <a href="qchar.html">TQChar</a> & separator ) +<h3 class=fn>bool <a name="writeEntry-7"></a>TQSettings::writeEntry ( const <a href="tqstring.html">TQString</a> & key, const <a href="tqstringlist.html">TQStringList</a> & value, const <a href="qchar.html">TQChar</a> & separator ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. <p> Writes the string list entry <em>value</em> into key <em>key</em>. The <em>key</em> is created if it doesn't exist. Any previous value is overwritten by <em>value</em>. The list is stored as a sequence of strings separated -by <em>separator</em> (using <a href="ntqstringlist.html#join">TQStringList::join</a>()), so none of the +by <em>separator</em> (using <a href="tqstringlist.html#join">TQStringList::join</a>()), so none of the strings in the list should contain the separator. If the list is empty or null the key's value will be an empty string. <p> <b>Warning:</b> The list should not contain empty or null strings, as -<a href="#readListEntry">readListEntry</a>() will use <a href="ntqstringlist.html#split">TQStringList::split</a>() to recreate the +<a href="#readListEntry">readListEntry</a>() will use <a href="tqstringlist.html#split">TQStringList::split</a>() to recreate the list. As the documentation states, TQStringList::split() will omit empty strings from the list. Because of this, it is impossible to retrieve identical list data that is stored with this function. @@ -611,7 +611,7 @@ We recommend using the <a href="#writeEntry">writeEntry</a>() and readListEntry( that do not take a <em>separator</em> argument. <p> If an error occurs the settings are left unchanged and FALSE is returned; otherwise returns TRUE. -<p> <p>See also <a href="#readListEntry">readListEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#removeEntry">removeEntry</a>(), and <a href="ntqstringlist.html#join">TQStringList::join</a>(). +<p> <p>See also <a href="#readListEntry">readListEntry</a>(), <a href="#readNumEntry">readNumEntry</a>(), <a href="#readDoubleEntry">readDoubleEntry</a>(), <a href="#readBoolEntry">readBoolEntry</a>(), <a href="#removeEntry">removeEntry</a>(), and <a href="tqstringlist.html#join">TQStringList::join</a>(). <!-- eof --> <hr><p> |