Browse Source

Fix typography

Neal Wilson 11 years ago
parent
commit
23482e5d3d
1 changed files with 9 additions and 9 deletions
  1. 9
    9
      src/typica.w

+ 9
- 9
src/typica.w View File

12580
 
12580
 
12581
 @<Class declarations@>=
12581
 @<Class declarations@>=
12582
 class SqlQueryView : public QTableView@/
12582
 class SqlQueryView : public QTableView@/
12583
-{@t\1@>@/
12584
-	Q_OBJECT@;
12583
+{@/
12584
+	@[Q_OBJECT@]@;
12585
 	public:@/
12585
 	public:@/
12586
 		SqlQueryView(QWidget *parent = NULL);
12586
 		SqlQueryView(QWidget *parent = NULL);
12587
 		void setQuery(const QString &query);
12587
 		void setQuery(const QString &query);
12588
 		bool setHeaderData(int section, Qt::Orientation@, orientation,
12588
 		bool setHeaderData(int section, Qt::Orientation@, orientation,
12589
 						   const QVariant &value, int role);
12589
 						   const QVariant &value, int role);
12590
-		Q_INVOKABLE QVariant data(int row, int column,
12591
-								  int role = Qt::DisplayRole);@/
12590
+		@[Q_INVOKABLE@,@, QVariant@]@, data(int row, int column,
12591
+								  int role = Qt::DisplayRole);@t\2\2@>@/
12592
 	signals:@/
12592
 	signals:@/
12593
 		void openEntry(QString key);
12593
 		void openEntry(QString key);
12594
-		void openEntryRow(int row);@t\2@>@/
12594
+		void openEntryRow(int row);@/
12595
 	protected:@/
12595
 	protected:@/
12596
-		virtual void showEvent(QShowEvent *event);
12597
-	private slots@t\kern-3pt@>:@t\1@>@/
12596
+		virtual void showEvent(QShowEvent *event);@/
12597
+	@[private slots@]:@/
12598
 		void openRow(const QModelIndex &index);
12598
 		void openRow(const QModelIndex &index);
12599
-		void persistColumnResize(int column, int oldsize, int newsize);@t\2@>@/
12600
-}@t\kern-3pt@>;
12599
+		void persistColumnResize(int column, int oldsize, int newsize);@/
12600
+};
12601
 
12601
 
12602
 @ The constructor sets up the communication between the model and the view and
12602
 @ The constructor sets up the communication between the model and the view and
12603
 also provides the connection needed to notice when columns change size to
12603
 also provides the connection needed to notice when columns change size to

Loading…
Cancel
Save