summaryrefslogtreecommitdiffstats
path: root/doc/html/tqdate.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqdate.html')
-rw-r--r--doc/html/tqdate.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/tqdate.html b/doc/html/tqdate.html
index b0711f879..6a8057039 100644
--- a/doc/html/tqdate.html
+++ b/doc/html/tqdate.html
@@ -158,11 +158,11 @@ Returns a TQDate object containing a date <em>nyears</em> later than the
date of this object (or earlier if <em>nyears</em> is negative).
<p> <p>See also <a href="#addDays">addDays</a>() and <a href="#addMonths">addMonths</a>().
-<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="currentDate"></a>TQDate::currentDate ( <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a>&nbsp;ts )<tt> [static]</tt>
+<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="currentDate"></a>TQDate::currentDate ( <a href="tqt.html#TimeSpec-enum">TQt::TimeSpec</a>&nbsp;ts )<tt> [static]</tt>
</h3>
Returns the current date, as reported by the system clock, for the
TimeSpec <em>ts</em>. The default TimeSpec is LocalTime.
-<p> <p>See also <a href="tqtime.html#currentTime">TQTime::currentTime</a>(), <a href="tqdatetime.html#currentDateTime">TQDateTime::currentDateTime</a>(), and <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a>.
+<p> <p>See also <a href="tqtime.html#currentTime">TQTime::currentTime</a>(), <a href="tqdatetime.html#currentDateTime">TQDateTime::currentDateTime</a>(), and <a href="tqt.html#TimeSpec-enum">TQt::TimeSpec</a>.
<p>Example: <a href="dclock-example.html#x1098">dclock/dclock.cpp</a>.
<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="currentDate-2"></a>TQDate::currentDate ()<tt> [static]</tt>
@@ -217,14 +217,14 @@ negative if <em>d</em> is earlier than this date).
<p> <p>See also <a href="#addDays">addDays</a>().
-<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="fromString"></a>TQDate::fromString ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;s, <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a>&nbsp;f = TQt::TextDate )<tt> [static]</tt>
+<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="fromString"></a>TQDate::fromString ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;s, <a href="tqt.html#DateFormat-enum">TQt::DateFormat</a>&nbsp;f = TQt::TextDate )<tt> [static]</tt>
</h3>
Returns the TQDate represented by the string <em>s</em>, using the format
<em>f</em>, or an invalid date if the string cannot be parsed.
-<p> Note for <a href="ntqt.html#DateFormat-enum">TQt::TextDate</a>: It is recommended that you use the
+<p> Note for <a href="tqt.html#DateFormat-enum">TQt::TextDate</a>: It is recommended that you use the
English short month names (e.g. "Jan"). Although localized month
names can also be used, they depend on the user's locale settings.
-<p> <b>Warning:</b> <a href="ntqt.html#DateFormat-enum">TQt::LocalDate</a> cannot be used here.
+<p> <b>Warning:</b> <a href="tqt.html#DateFormat-enum">TQt::LocalDate</a> cannot be used here.
<h3 class=fn>bool <a name="isNull"></a>TQDate::isNull () const
</h3>
@@ -383,21 +383,21 @@ Uses <a href="#longMonthName">TQDate::longMonthName</a>().
<p> <p>See also <a href="tqdatetime.html#toString">TQDateTime::toString</a>() and <a href="tqtime.html#toString">TQTime::toString</a>().
<p>
-<h3 class=fn><a href="tqstring.html">TQString</a> <a name="toString-2"></a>TQDate::toString ( <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a>&nbsp;f = TQt::TextDate ) const
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="toString-2"></a>TQDate::toString ( <a href="tqt.html#DateFormat-enum">TQt::DateFormat</a>&nbsp;f = TQt::TextDate ) const
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns the date as a string. The <em>f</em> parameter determines the
format of the string.
-<p> If <em>f</em> is <a href="ntqt.html#DateFormat-enum">TQt::TextDate</a>, the string format is "Sat May 20 1995"
+<p> If <em>f</em> is <a href="tqt.html#DateFormat-enum">TQt::TextDate</a>, the string format is "Sat May 20 1995"
(using the <a href="#shortDayName">shortDayName</a>() and <a href="#shortMonthName">shortMonthName</a>() functions to
generate the string, so the day and month names are locale
specific).
-<p> If <em>f</em> is <a href="ntqt.html#DateFormat-enum">TQt::ISODate</a>, the string format corresponds to the
+<p> If <em>f</em> is <a href="tqt.html#DateFormat-enum">TQt::ISODate</a>, the string format corresponds to the
ISO 8601 specification for representations of dates, which is
YYYY-MM-DD where YYYY is the year, MM is the month of the year
(between 01 and 12), and DD is the day of the month between 01 and
31.
-<p> If <em>f</em> is <a href="ntqt.html#DateFormat-enum">TQt::LocalDate</a>, the string format depends on the
+<p> If <em>f</em> is <a href="tqt.html#DateFormat-enum">TQt::LocalDate</a>, the string format depends on the
locale settings of the system.
<p> If the date is an invalid date, then <a href="tqstring.html#TQString-null">TQString::null</a> will be returned.
<p> <p>See also <a href="#shortDayName">shortDayName</a>() and <a href="#shortMonthName">shortMonthName</a>().