mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix error causeing plugin load to fail.
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@1364 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
1957dbdd5f
commit
465ca772d2
@ -117,15 +117,13 @@
|
||||
<cstring>textEdit2</cstring>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string><h1>Description</h1>
|
||||
Enter your copyright label on the right. This plugin supports basic html markup tags for formatting the label.
|
||||
|
||||
<PRE>
|
||||
&lt;B&gt; <b>Bold text</b> &lt;/B&gt;
|
||||
&lt;I&gt; <i>Italics</i> &lt;/I&gt;
|
||||
</PRE>
|
||||
|
||||
Font face and style can also be set using the 'Font' button.</string>
|
||||
<string><html><head><meta name="qrichtext" content="1" /></head><body style="font-size:12pt;font-family:Arial">
|
||||
<p style="margin-top:18px"><span style="font-size:24pt;font-weight:600">Description</span></p>
|
||||
<p>Enter your copyright label on the right. This plugin supports basic html markup tags for formatting the label. </p>
|
||||
<p><span style="font-family:Courier New,courier">&lt;B&gt; </span><span style="font-family:Courier New,courier;font-weight:600">Bold text</span><span style="font-family:Courier New,courier"> &lt;/B&gt;<br />&lt;I&gt; </span><span style="font-family:Courier New,courier;font-style:italic">Italics</span><span style="font-family:Courier New,courier"> &lt;/I&gt;</span></p>
|
||||
<p>Font face and style can also be set using the 'Font' button.</p>
|
||||
</body></html>
|
||||
</string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<enum>WidgetWidth</enum>
|
||||
@ -283,10 +281,16 @@ Font face and style can also be set using the 'Font' button.</string>
|
||||
<slot>cboxEnabled_toggled(bool)</slot>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>cboPlacement</sender>
|
||||
<sender>cboOrientation</sender>
|
||||
<signal>textChanged(const QString&)</signal>
|
||||
<receiver>PluginGuiBase</receiver>
|
||||
<slot>cboPlacement_textChanged(const QString&)</slot>
|
||||
<slot>cboOrientation_textChanged(const QString&)</slot>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>cboPlacement</sender>
|
||||
<signal>highlighted(const QString&)</signal>
|
||||
<receiver>PluginGuiBase</receiver>
|
||||
<slot>cboPlacement_highlighted(const QString&)</slot>
|
||||
</connection>
|
||||
</connections>
|
||||
<includes>
|
||||
@ -298,7 +302,8 @@ Font face and style can also be set using the 'Font' button.</string>
|
||||
<slot>btnFontColour_clicked()</slot>
|
||||
<slot>btnFontFace_clicked()</slot>
|
||||
<slot>cboxEnabled_toggled( bool )</slot>
|
||||
<slot>cboPlacement_textChanged( const QString & )</slot>
|
||||
<slot>cboOrientation_textChanged( const QString & )</slot>
|
||||
<slot>cboPlacement_highlighted( const QString & )</slot>
|
||||
</slots>
|
||||
<layoutdefaults spacing="6" margin="11"/>
|
||||
</UI>
|
||||
|
@ -1,3 +1,5 @@
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
** ui.h extension file, included from the uic-generated form implementation.
|
||||
**
|
||||
@ -45,3 +47,21 @@ void PluginGuiBase::btnFontFace_clicked()
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
void PluginGuiBase::cboxEnabled_toggled( bool )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
void PluginGuiBase::cboOrientation_textChanged( const QString & )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
void PluginGuiBase::cboPlacement_highlighted( const QString & )
|
||||
{
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user