By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 3200
Collapse All | Expand All

(-)tdeutils-trinity-14.0.13_/kcalc/general.ui (+8 lines)
Lines 153-158 Link Here
153
                        <string>Group digits</string>
153
                        <string>Group digits</string>
154
                    </property>
154
                    </property>
155
                </widget>
155
                </widget>
156
                <widget class="TQCheckBox">
157
                    <property name="name">
158
                        <cstring>kcfg_CopyToBufNoLocale</cstring>
159
                    </property>
160
                    <property name="text">
161
                        <string>Copy real values to the buffer in not localized view</string>
162
                    </property>
163
                </widget>
156
            </vbox>
164
            </vbox>
157
        </widget>
165
        </widget>
158
        <spacer>
166
        <spacer>
(-)tdeutils-trinity-14.0.13_/kcalc/kcalcdisplay.cpp (-1 / +2 lines)
Lines 102-108 Link Here
102
102
103
void KCalcDisplay::slotCopy(void)
103
void KCalcDisplay::slotCopy(void)
104
{
104
{
105
	TQString txt = TQLabel::text();
105
	TQString txt = (_num_base == NB_DECIMAL && KCalcSettings::copyToBufNoLocale()) ?
106
			    _display_amount.toTQString(KCalcSettings::precision(), _fixed_precision) : TQLabel::text();
106
	if (_num_base == NB_HEX)
107
	if (_num_base == NB_HEX)
107
		txt.prepend( "0x" );
108
		txt.prepend( "0x" );
108
	(TQApplication::clipboard())->setText(txt, TQClipboard::Clipboard);
109
	(TQApplication::clipboard())->setText(txt, TQClipboard::Clipboard);
(-)tdeutils-trinity-14.0.13_/kcalc/kcalc.kcfg (+4 lines)
Lines 83-88 Link Here
83
      <label>Whether to group digits.</label>
83
      <label>Whether to group digits.</label>
84
      <default>true</default>
84
      <default>true</default>
85
    </entry>
85
    </entry>
86
    <entry name="CopyToBufNoLocale" type="Bool" key="cptobufnolocale">
87
      <label>Copy real values to the buffer in not localized view.</label>
88
      <default>false</default>
89
    </entry>
86
    <entry name="ShowStat" type="Bool">
90
    <entry name="ShowStat" type="Bool">
87
      <label>Whether to show statistical buttons.</label>
91
      <label>Whether to show statistical buttons.</label>
88
      <default>false</default>
92
      <default>false</default>

Return to bug 3200