]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/example/qt/qt3/moccable-cpp/main.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / example / qt / qt3 / moccable-cpp / main.cpp
index ed36f74698e832848fe9d4914a3d904f2be61350..63533ba5803e1ae186229f296e6b3fe5dd15fbc1 100644 (file)
@@ -1,7 +1,7 @@
 // Copyright Vladimir Prus 2005.
 // Distributed under the Boost Software License, Version 1.0.
-// (See accompanying file LICENSE_1_0.txt
-// or copy at http://www.boost.org/LICENSE_1_0.txt)
+// (See accompanying file LICENSE.txt
+// or copy at https://www.bfgroup.xyz/b2/LICENSE.txt)
 
 
 #include <qwidget.h>
@@ -14,10 +14,10 @@ class My_widget : public QWidget
 {
     Q_OBJECT
 public:
-    My_widget() : QWidget() 
+    My_widget() : QWidget()
     {
         QPushButton* b = new QPushButton("Push me", this);
-    
+
         connect(b, SIGNAL(clicked()), this, SLOT(theSlot()));
     }
 
@@ -25,8 +25,8 @@ private slots:
     void theSlot()
     {
         std::cout << "Clicked\n";
-    }    
-    
+    }
+
 };
 
 int main(int ac, char* av[])