Implement the ChatLine element in C++
[quassel.git] / src / qmlui / qml / ChatLine.qml
diff --git a/src/qmlui/qml/ChatLine.qml b/src/qmlui/qml/ChatLine.qml
deleted file mode 100644 (file)
index 1cf3ae8..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-import QtQuick 1.1
-
-Item {
-  Row {
-    id: chatLine
-    Text { text: timestamp; wrapMode: Text.NoWrap; width: 100 }
-    Text { text: sender; wrapMode: Text.NoWrap; width: 100 }
-    Text { text: contents; wrapMode: Text.Wrap; width: chatView.width-200}
-  }
-  height: chatLine.height
-}