12 changes: 0 additions & 12 deletions src/libkstapp/legendtab.ui
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,6 @@
<property name="text">
<string/>
</property>
<property name="shortcut">
<string>Alt+R</string>
</property>
</widget>
</item>
<item row="3" column="3">
Expand All @@ -172,9 +169,6 @@
<property name="text">
<string/>
</property>
<property name="shortcut">
<string>Alt+S</string>
</property>
</widget>
</item>
<item row="4" column="2">
Expand Down Expand Up @@ -277,9 +271,6 @@
<property name="text">
<string/>
</property>
<property name="shortcut">
<string>Alt+B</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
Expand All @@ -296,9 +287,6 @@
<property name="text">
<string/>
</property>
<property name="shortcut">
<string>Alt+I</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
Expand Down
3 changes: 0 additions & 3 deletions src/libkstapp/linedimensionstab.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<height>103</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QGridLayout" name="gridLayout">
Expand Down
3 changes: 0 additions & 3 deletions src/libkstapp/markerstab.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<height>551</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QGroupBox" name="_markersGroup">
Expand Down
9 changes: 0 additions & 9 deletions src/libkstapp/overridelabeltab.ui
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
<height>0</height>
</size>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<layout class="QGridLayout" name="gridLayout">
Expand Down Expand Up @@ -80,9 +77,6 @@
<height>22</height>
</size>
</property>
<property name="shortcut">
<string>Alt+I</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
Expand Down Expand Up @@ -137,9 +131,6 @@
<height>22</height>
</size>
</property>
<property name="shortcut">
<string>Alt+B</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
Expand Down
3 changes: 0 additions & 3 deletions src/libkstapp/rangetab.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<height>375</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QGroupBox" name="groupBox">
Expand Down
3 changes: 0 additions & 3 deletions src/libkstapp/stroketab.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<height>176</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QGridLayout">
<item row="0" column="0">
<widget class="QLabel" name="label">
Expand Down
9 changes: 0 additions & 9 deletions src/libkstapp/themedialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<height>338</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
Expand Down Expand Up @@ -105,9 +102,6 @@
<property name="text">
<string/>
</property>
<property name="shortcut">
<string>Alt+I</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
Expand All @@ -131,9 +125,6 @@
<property name="text">
<string/>
</property>
<property name="shortcut">
<string>Alt+B</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
Expand Down
2 changes: 1 addition & 1 deletion src/libkstapp/view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ double View::resetPlotFontSizes(QList<PlotItem*> new_plots) {

// the 6 in the line below is a magic number that impedes scaling until you
// have more than a couple of rows/columns. A 1 would make it scale more
// agressively. The behavior looks pretty good to me with 6.
// aggressively. The behavior looks pretty good to me with 6.
qreal count = qMax(plots.count()-6, 1);

qreal newPointSize = qMax(pointSize/qSqrt(count) , ApplicationSettings::self()->minimumFontSize());
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/dataobject/genericfilter/polynom.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ template<class S> polynom<S>::~polynom()
delete[] C;
};
//------------------------------------------------------------------------------
// coefficient acces (read or write)
// coefficient access (read or write)
template<class S> S& polynom<S>::operator[] (int i)
{
return i<=n ? C[i] : NulC;
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/sampleplugin/sampleplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class ConfigWidgetSamplePlugin : public Kst::DataObjectConfigWidget, public Ui_S
public slots:
// Dialog Defaults control - Save
// Uses the provided QSettings Object to save the plugin default details as a new group.
// Called everytime a new dialog request is made. Does not affect editing.
// Called every time a new dialog request is made. Does not affect editing.
virtual void save() {
if (_cfg) {
_cfg->beginGroup("Sample DataObject Plugin");
Expand All @@ -101,7 +101,7 @@ class ConfigWidgetSamplePlugin : public Kst::DataObjectConfigWidget, public Ui_S

// Dialog Defaults control - Load
// Uses the provided QSettings Object to load the plugin default details.
// Called everytime a new dialog request is completed. Does not get called on edit.
// Called every time a new dialog request is completed. Does not get called on edit.
virtual void load() {
if (_cfg && _store) {
_cfg->beginGroup("Sample DataObject Plugin");
Expand Down
3 changes: 0 additions & 3 deletions src/widgets/fftoptions.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<height>200</height>
</rect>
</property>
<property name="windowTitle">
<string>FFTOptions</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<property name="margin">
<number>0</number>
Expand Down
3 changes: 0 additions & 3 deletions tests/kstcontrol/cwidget.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<height>451</height>
</rect>
</property>
<property name="windowTitle">
<string>CWidget</string>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QGridLayout" name="gridLayout">
<item row="1" column="0">
Expand Down
2 changes: 1 addition & 1 deletion tests/testcsd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,4 @@ void TestCSD::testCSD() {

#ifdef KST_USE_QTEST_MAIN
QTEST_MAIN(TestCSD)
#endif
#endif